home *** CD-ROM | disk | FTP | other *** search
/ The X-Philes (2nd Revision) / The X-Philes Number 1 (1995).iso / xphiles / hp48_2 / symbol.tab < prev    next >
Text File  |  1991-04-12  |  49KB  |  2,580 lines

  1. Article 2245 of comp.sys.handhelds:
  2. Path: en.ecn.purdue.edu!noose.ecn.purdue.edu!samsung!olivea!mintaka!snorkelwacker!ai-lab!rice-chex!bson
  3. From: bson@rice-chex.ai.mit.edu (Jan Brittenson)
  4. Newsgroups: comp.sys.handhelds
  5. Subject: Re: SAD .symbols additions
  6. Message-ID: <11769@life.ai.mit.edu>
  7. Date: 8 Nov 90 15:45:28 GMT
  8. References: <9542@jarthur.Claremont.EDU>
  9. Sender: news@ai.mit.edu
  10. Organization: nil
  11. Lines: 2565
  12.  
  13. In article <9542@jarthur.Claremont.EDU> 
  14.    bgribble@jarthur.claremont.edu (Bill Gribble) writes:
  15.  
  16.  > I've never really done any "uncharted ground"-type disassembly before,
  17.  > so I don't know whether it's traditional to be a prig about spreading
  18.  > the wealth.
  19.  
  20.    Although I can only speak for myself: au contraire! Here is my
  21. .symbols file as it looks today.  Symbols starting with a capital
  22. letter (e.g.  `Foo') are RPL objects, all others are ML labels (e.g.
  23. `foo'). A symbol, ending with `'p' is a predicate which returns True
  24. (#3a81?) or False (#3ac0?). A symbol ending with `q' is questionable,
  25. i.e. it's what I *think* it is, or a part of its function; it may for
  26. instance be some test that also alters the heap, or messes with local
  27. registers, or something, name `Testq'. Symbols ending with _ref or
  28. _ref_<ordinal> are simply references, i.e. jump instructions. For
  29. instance, "jump.a foo" may exist only for the purpose of addressing
  30. foo using local branches, and could then be preceded with `foo_ref:'
  31. or `foo_ref_2:' - you get the idea. A short is a 5-nibble integer, and
  32. is the default operand type.  If only one operand type follows the
  33. name, then all operands are of this type. For instance, `Sub' (Not
  34. Substring, that would be `Sub_string' or `Substring_string'!)
  35. subtracts two shorts, while `Sub_real"' subtracts two reals. They may
  36. sometimes appear as `Sub_short_short' or `Sub_real_real' which are
  37. essentially the same thing. The are still great possibilities for
  38. amibiguity, though, my usage is not always coherent, and there are
  39. typos. If a routine does more than one thing, then the names are
  40. (ideally, in simple cases) concatenated, e.g. `Swap_Over' which tells
  41. us that this piece of code is an RPL object that first Swaps, and then
  42. does an Over. Or `Dup_Inc_Gtp' would do a Dup, Increment (short of
  43. course) and test if Greater Than (always False).
  44.  
  45.    Other conventions I've used are: "Return" (i.e. End) exits the
  46. current program level; "Ret" exits *two* levels (i.e. it exits the
  47. level above, sorry about the stupid names); anything starting with a
  48. type name (e.g. "Short_17h") is a constant; Get recalls something to
  49. the stack; Set overwrites something (usually the top of the stack, but
  50. sometimes a variable).
  51.  
  52.  
  53.    What I'm interested in is more precise information on the user
  54. memory layout and the static data (i.e. system variables) area. So
  55. far, this is what I've reckoned:
  56.  
  57.     --------------------------  @???
  58.     |      Pseudo static     |
  59.     --------------------------  @70597   (BOS)
  60.     |          Stack         |
  61.     --------------------------  @7057e   (TOS, d1)
  62.     |          Free          |
  63.     --------------------------  @705b0   (TOH, d0)
  64.     |          Heap       |
  65.     --------------------------  @7056f   (HeapStart)
  66.     |         Dynamic        |
  67.     --------------------------  @7056a   (DynamicStart)
  68.     |         Static     |
  69.     --------------------------  70000
  70.  
  71.    The Static area, of course is all system variables. The dynamic
  72. area is where strings and similar things are stored. Data here is
  73. allocated by moving the heap upwards, and kept in blocks starting with
  74. the size allocated (5 nib), followed by the data allocated, and ended
  75. with an unused nibble (only used by GC, I believe). The Heap is where
  76. return addresses and such are kept, it grows upwards. The Stack grows
  77. downwards, filling up the Free area, which, when empty, initiates a GC
  78. to recover memory. The Pseudo static area I'm not sure exactly when
  79. it's used, but I believe rarely changed (i.e. in user programs)
  80. objects are kept here, like programs and directories. Allocation here
  81. implies moving the stack downwards.
  82.  
  83.    Having a good model of the memory layout is essential to
  84. disassembling the ROM. What I would - very much - like to know is
  85.  
  86.     i.   Exactly how is the Heap used. Register B is the frame
  87.          pointer, or context pointer if you like, but what
  88.          follows it up to D0?
  89.  
  90.     ii.  It seems to me local variables are kept sequentially in
  91.          the Dynamic area above, i.e. the variables of a program
  92.          immediately follow those of the calling program. I have
  93.          a hunch they're the last thing before the Heap. Loop
  94.          variables are stored like local variables (and actually,
  95.          there doesn't seem to be any difference to me between a
  96.          program and a loop), but how are they used?
  97.  
  98.  
  99. Enough. Help yourself to whatever is new to you.
  100.  
  101.  
  102. O  /
  103.  \/
  104.  /\ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  105. O  \
  106.  
  107. 1dfdf:Eval_alg_to_real
  108. 1db5b:Assert_range
  109. 193c1:Assert_array
  110. 193a3:Pick3_Recall
  111. 1853b=Recall
  112. 19385:Over_Recall
  113. 41f65=Get_key
  114. 1a7b5:Wait_positive
  115. 1cd8d:Real_27
  116. 1cd73:Real_26
  117. 1cd69:Short_afh
  118. 1cd54:Real_17
  119. 1cd3a:Real_16
  120. 1cd20:Real_25
  121. 1cd16:Short_7fh
  122. 1cd01:Real_24
  123. 1cce2:Real_23
  124. 1ccd8:Short_5fh
  125. 1ccc3:Real_22
  126. 1cca4:Real_21
  127. 1cc85:Real_15
  128. 1cc6b:Real_20
  129. 1cc51:Real_14
  130. 1cc37:Real_13
  131. 1cc1d:Real_12
  132. 1cc03:Real_11
  133. 1cdd4:Type_prg
  134. 1cdb1:Type_array
  135. 567b=Size_listUnit
  136. 1ca85:Size_prg
  137. 360b6=CtoR_array
  138. 1c8a7:Short_822h
  139. 1c898:Short_855h
  140. 1c889:Short_c22h
  141. 1c87a:Short_c55h
  142. 36039=RtoC_array
  143. 628d1:Dup2_Ltp
  144. 628b5:Dup2_Equalp
  145. 6289b:Dup2_Gtp
  146. 1c783:Cmd_toLIST
  147. 112ec:Clear_lastargs
  148. 18f9d:Check_1_argtype_alt2
  149. 1c6e3:StoF_sysflags_bin
  150. 1c6cf:StoF
  151. 1c64e:Get_user_flags
  152. 1c637:Get_system_flags
  153. 53f69:save_regs_ref_5
  154. 53c5b:SetDec
  155. 53cf0:Rcws
  156. 53caa:Stws_short
  157. 18d0a:shortpush_r0_rplret
  158. 1c539:Fcc_real
  159. 1c4ec:Test_and_clear_system_flag
  160. 53755=Clear_user_flag
  161. 1c4ce:Test_and_clear_user_flag
  162. 53741:storeflag_rplret
  163. 537a6:getflag
  164. 1c2b0:RealToShort_Dup_Ge1p
  165. 166ef=SetSci
  166. 1c437:Sci_real
  167. 166e3=SetFix
  168. 1c403:Fix_short
  169. 2a604=Grad
  170. 2a5f0=Rad
  171. 2a5d2=Deg
  172. 1c32c:Fsp_real
  173. 1c2ee:Cf_real
  174. 1c28d:Sf_real
  175. 55d9b=Perm_algGlob
  176. 55d69=Perm_algGlob_real
  177. 55d82=Perm_real_algGlob
  178. 2ae75=Perm_real
  179. fbab=Percent_unit_real
  180. 55c6f=Percent_algGlob
  181. 55c3d=Percent_algGlob_real
  182. 55c56=Percent_real_algGlob
  183. 2a9c9=Percent_real
  184. 365ac=Rsd_array
  185. 36782=Cross_array
  186. 36a2a=Det_array
  187. 368f9=Cnrm_array
  188. 368e5=Rnrm_array
  189. 2a6c8=HMSsub_real
  190. 2a6a0=HMSadd_real
  191. 2a68c=HMSto_real
  192. 5523d=RtoD_algGlob
  193. 2a655=RtoD_real
  194. 55224=DtoR_algGlob
  195. 2a622=DtoR_real
  196. 5520b=Mant_algGlob
  197. 2a930=Mant_real
  198. 56089=Mod_algGlob
  199. 56057=Mod_algGlob_real
  200. 56070=Mod_real_algGlob
  201. 2abdc=Mod_real
  202. fd68=Rnd_unit_real
  203. 55de6=Rnd_algGlob
  204. 55db4=Rnd_algGlob_real
  205. 35ec2=Rnd_complex_real
  206. 55dcd=Rnd_real_algGlob
  207. 2b529=Rnd_real
  208. fd22=Floor_unit
  209. 551c0=Floor_alGGlob
  210. 2af86=Floor
  211. fd0e=Fp_unit
  212. 551a7=Fp_algGlob
  213. 2af4d=Fp
  214. fcfa=Ip_unit
  215. 5518e=Ip_algGlob
  216. 2af60=Ip
  217. 55143=Lnp1_algGlob
  218. 2aba7=Lnp1_real
  219. 5512a=Alog_algGlob
  220. 52305=Alog_complex
  221. 2abba=Alog_real
  222. 55111=Log_algGlob
  223. 522bf=Log_complex
  224. 1ba0c=Log_real
  225. 550ad=Acosh_algGlob
  226. 52836=Acosh_complex
  227. 1b86c:Acosh_real
  228. 55094=Asinh_algGlob
  229. 5281d=Asinh_complex
  230. 2ae00=Asinh_real
  231. 5507b=Atan_algGlob
  232. 52675=Atan_complex
  233. 2ad21=Atan_real
  234. 55049=Asin_algGlob
  235. 52804=Asin_complex
  236. 1b6ea:Asin_real
  237. f674=Tan_unit
  238. 54fe5=Tan_algGlob
  239. 525b7=Tan_complex
  240. 2ac91=Tan_real
  241. f660=Cos_unit
  242. 54fcc=Cos_algGlob
  243. 52571=Cos_complex
  244. 2ac40=Cos_real
  245. f913=Sq_unit
  246. 54f9a=Sq_algGlob
  247. 36435=Sq_array
  248. 1b48f:Sq_complex
  249. 1b47b:Sq_real
  250. fce6=SigmaN_unit
  251. 54f68=SigmaN_algGlob
  252. 520cb=SigmaN_complex
  253. 2a8d7=SigmaN_real
  254. f841=Inv_unit
  255. 54f36=Inv_algGlob
  256. 36b0b=Inv_array
  257. 51efa=Inv_complex
  258. 2aaaf=Inv_real
  259. 51a37:Real_as_complex
  260. 2aa70=PwrReal
  261. f823=Div_real_unit
  262. f823=Div_unit
  263. 5603e=Div_algGlob
  264. 5600c=Div_algGlob_complex
  265. 56025=Div_real_algGlob
  266. 36b60=Div_array
  267. 363cc=Div_array_complex
  268. 363cc=Div_array_real
  269. 53f05=Div_bin
  270. 542bd=Div_bin_real
  271. 5429f:Div_real_bin
  272. 51ec8=Div_complex
  273. 51e64=Div_complex_real
  274. 51e19=Div_real_complex
  275. 55f8f=Sub_unit_algGlob
  276. 55f76=Sub_algGlob_unit
  277. f774=Sub_unit_real
  278. f774=Sub_real_unit
  279. f774=Sub_unit
  280. 55fa8=Sub_algGlob
  281. 55f76=Sub_algGlob_complex
  282. 55f76=Sub_algGlob_array
  283. 55f8f=Sub_array_algGlob
  284. 55f8f=Sub_real_array
  285. 36278=Sub_array
  286. 5431c=Sub_bin_real
  287. 542fe=Sub_real_bin
  288. 51cfc=Sub_comlex
  289. 51ce8=Sub_complex_real
  290. 51cd4=Sub_real_complex
  291. 2a981=Sub_real
  292. 1acfb:Bin_0108
  293. 15b13=Any_to_string
  294. 1acbb:Add_any_string
  295. 1aca7:Add_string_any
  296. 1ac93:Add_any_list
  297. 52fa=Add_list_any
  298. 521f=Add_list_list
  299. 36115=Add_array_array
  300. 53ea0=Add_bin_bin
  301. 54349=Add_bin_real
  302. 54330=Add_real_bin
  303. 54cdb:Minr
  304. 54d58:i
  305. 54d35:Pi
  306. 54d12:Maxr
  307. 5eb08:Dec2_Rot_Rot_Drop2
  308. 5eaf4:Swap_Drop_Dec
  309. 53bf1:Flags_11_12
  310. 53bdd:Flag_11
  311. f5fc=Abs_unit
  312. 54f04=Abs_algGlob
  313. 369cb=Abs_array
  314. 52062=Abs_complex
  315. 2a900=Abs_real
  316. 4fc3c=Neg_prg
  317. 4fc28=Neg_grob
  318. 53ec3:Neg_bin
  319. f615=Neg_unit
  320. 54eeb=Neg_algGlob
  321. 35deb=Neg_array
  322. 51b70:Neg_complex
  323. 2a920=Neg_real
  324. 4714:Lastkeyq
  325. 47b7:clear_pollflag
  326. 704dc=pollflag
  327. 704c3=pollpattern
  328. 477e:poll_kbd
  329. 179ac:Grob_height_equal1p
  330. 620eb:Over_Equalp
  331. 62103:Set_true
  332. 62159:Stringp
  333. 62154:Dup_Stringp
  334. 62144:Binaryp
  335. 6213f:Dup_Binaryp
  336. 6212f:Shortp
  337. 6212a:Dup_Shortp
  338. 6211a:Lnamep
  339. 62115:Dup_Lnamep
  340. 517f3=IfEqualReal_thenEvalEnd
  341. 5182f:LoopCounter_DecLoopCounter
  342. 5187f:Grobsize_of_graphGrob
  343. 5186b:Drop_Rules
  344. 51857:Dec_lev2
  345. 51843:Inc_lev2
  346. 50578:Grobsize
  347. 3a45d:Grob_inverse_menu
  348. 3a399:Grob_lineseg_square
  349. 3a337:Grob_lineseg
  350. 41881:Get_707d3_short
  351. 4186e:Store_707d3_short
  352. 4185b:Get_707c9_short
  353. 41848:Store_707c9_short
  354. 418f4:Store_70632
  355. 418e4:Eval_7062d
  356. 418d4:Store_7062d
  357. 418c4:Eval_70628
  358. 418b4:Store_70628
  359. 418a4:Get_7061e
  360. 41894:Store_7061e
  361. 41a5f:Get_userkeysCRC
  362. 41a39:Get_userkeys
  363. 41a32:rpljump_indc_ref2
  364. 41a2b:pushindc_rplret_ref2
  365. 41a24:setindc_rplret_ref2
  366. 7058d=menu_keys
  367. 6383a=Disp_error
  368. 1415f:Mul1000_real
  369. 5ab3:Copy_and_set_type
  370. 50ed:FirstChar_of_string
  371. 61896:Skip_if_zerop
  372. 3a4ce:DispString_fromLine
  373. 6509e:Short_minus1
  374. 60fac=Rolld3
  375. 62958:Exit_loop_Eval
  376. 3a578:EraseStk
  377. 3a55f:EraseStk_line_10h_to_38h
  378. 3a546:EraseStk_Line1
  379. 618a8:Skip_if_nonZerop
  380. 14088:ToString
  381. 1a556:EvalAddr_short
  382. 1a547:Syseval
  383. 633b2:Exit_PrgLevel_Skip
  384. 62035:Dup_Gnamep
  385. 29ff8:get2reals_normalize
  386. 2a060:getarray
  387. 2a002:get2reals
  388. 2ae9b:getreal_ref_3
  389. 2a80b:Le0Lev2p
  390. 2a7f7:Positivep
  391. 2a7e3:PositiveLev2p
  392. 2a7cf:NonZerop
  393. 2a7bb:NonZeropLev2p
  394. 2a738:Negativep_real
  395. 2a727:NegativeLev2p_real
  396. 2a75a:ZeroLev2p_real
  397. 54565=Ifte_algGlob_real_real
  398. 1a4a3:Ifte_real_any_any
  399. 14065=Errm
  400. 1404c=Errn
  401. 1400e=Err0
  402. 20b81=Rcl
  403. 1a2da:Romobjp
  404. 1a1fc:Bytes_any
  405. 1a265:Bytes_global
  406. 18706=Tvars_list
  407. 186e8=Tvars_real
  408. 18779=Vars
  409. 8d08:Set_curdir
  410. 18608:While_dir_empty
  411. 18621:IfFirstEnt_thenFalseIterate_elseTypeNib1and2_zerop
  412. 4eb8:Eval_in_new_frameq
  413. 516c:SubString_2toEnd
  414. 5153:SubList_2_toEnd
  415. 82e3=Up_findValue
  416. 60f0e:Rev3_Drop
  417. 8309=Updir
  418. 1848c:Path
  419. 184e1:Crdir
  420. 627a7=Drop_Dup
  421. 62775:Rot_Dup
  422. 62747:Swap_Dup
  423. 62726:Drop_Swap_Drop
  424. 6270c:Drop_Swap
  425. cfd9=Date_to_string
  426. d06a=Time_to_string
  427. 11679=Disp_Grob_inGrob_Pos
  428. e0ab:Get_fullStkGrob_curPos_nextEolPos
  429. 137b6=Get_curRowCol
  430. 70565=graph_GROB_ptr
  431. 12770:Trunc_string_for_display
  432. 6389e:Erase_in_GROB
  433. 126df:Erase_lines_in_stkGROB
  434. 1f047:Drop2_Real0
  435. 638cb:Exit_ifNotTrue_elseTrue
  436. 6362d:Nonzero_Swap_Nonzero_DropLev2ifTrue
  437. 63605:Drop_if_identical
  438. 635b0:DropLev2ifTrue_Not
  439. 3b68:seta_rplret_alt2
  440. 3b65:setr0_rplret_alt2
  441. 6359c:FalseIterate_if_notFalse
  442. 611fe:Pick3
  443. 627ce:pusha_rplret_alt_ref
  444. 627bb:Dup_Strlen
  445. 12665:Get_graphGrob
  446. 12655:Get_stkGrob
  447. 12645:Get_menuGrob
  448. 12635:Get_56line_stkGROB
  449. 11fff:seta_rplret
  450. edfa:test_d_gt_1
  451. 11f1f:set_c_p_fh
  452. 11eff:back_graph_char
  453. 70556=Stk_GROB_ptr
  454. 124d7:dispstr_row_c
  455. 124cb:DispStk_pitch8Str_line7
  456. 124bb:DispStk_pitch8Str_line6
  457. 124ab:DispStk_pitch8Str_line5
  458. 1249b:DispStk_pitch8Str_line4
  459. 1248b:DispStk_pitch8Str_line3
  460. 1247b:DispStk_pitch8Str_line2
  461. 1246b:DispStk_pitch8Str_line1
  462. 1245b:DispStk_pitch8Str_line0
  463. 11cc5:save_regs_ref_3
  464. 11cbe:getshort_ref_3
  465. 19a68:Get_default_alarm
  466. 19b1f:Global_Alrmdat_alt
  467. cc5b=DateAdd
  468. cc39=Ddays
  469. d304:Tstr
  470. e724=Delalrm
  471. e54d=Stoalrm_list
  472. e510=Stoalrm_real
  473. cd3f=Clkadj
  474. cd53=ToTime
  475. cd2b=ToDate
  476. cbfa=Cmd_Time
  477. 55256=Ubase_algGlobal
  478. f945=Ubase
  479. 5526f=Uval_algGlobal
  480. 53d91:Srb_bin
  481. 53d81:Sr_bin
  482. 53d6e:Slb_bin
  483. 53d5e=Sl_bin
  484. 64368:Drop_DropLev2
  485. 6400f:Set_loopctr_to_0
  486. 63ffb:ToPrg_2
  487. 63fe7:ToPrg_1
  488. 63ec5:IfZero_then_else
  489. 63e75:IfIdentical_then_else
  490. 63cbd:IfZero_DropRet
  491. 63cd6:Return_if_not_identical
  492. 63c90:Over_Pick5
  493. 63c7c:Swap_Pick4
  494. 63c68:Over_Over
  495. 61380:Swap_Over
  496. 63c2c:Swap_Roll4
  497. 34dbb:Global_Symb
  498. 63a29:ListAlgPrgTo_StoreLocalDvar
  499. 40aa8:Zerop_7065f
  500. 40a9a:Clear_7065f
  501. 8d2f:clr_indc_rplret
  502. 8d1c:store_a_indc_rplret
  503. 8d82:Get_Tmpdir
  504. 8d14:pop_store_ind_c_rplret
  505. 191b9:Mul_short
  506. 2efb:spanname
  507. 2d2a:span1thread
  508. 7e99=Find_Xlib
  509. 2fd6:Getvalue_or_ErrUndef
  510. 2d04:span5vector
  511. 2ce3:spanbyte
  512. 42262:Zerop_loc70679
  513. 62d09:Rolld4_Dup
  514. 62cf5:Rev3_Dup
  515. 3b2e:Identicalp
  516. 62c05:Dup_FindName
  517. 78c3:Find_var_current_dir
  518. 79ae:rr_pusha_jumpTrue_ref
  519. 7df3:find_local_b_levels_up
  520. 7da2:find_local_var
  521. 7866:nameeqp
  522. 8072:rr_pusha_jumpTrue
  523. 2f4c:Get_val_Eval
  524. 18ff1:not_address
  525. 18f87:end_follows
  526. 409df:Global_betaENTER
  527. 5deaa:Algebraicp_alt
  528. 18653:TypeNib1and2_zerop
  529. 310ca:get_112_and_test_bit0
  530. 310a5:test_if_401_is_Ch
  531. 3106f:add_c_mul_13104_to_d
  532. 3106b:add_100_mul_13104_to_d
  533. 3100e:Copy_70406nib_to_110
  534. 2ec52:Proper_baudrate_p
  535. 40f02:Delay_6b67
  536. 6b3e:Dynamicp
  537. 7056f=HeapStart
  538. 7066e=FreeMem
  539. 66b9:blkcopy_descend
  540. 6f9f:Eval_program
  541. 71a2:Loop
  542. 7035:dupnextprg
  543. 70fd:IfTrue
  544. 70c3:IfTrueFalse
  545. 6fb7:Iterate_loop
  546. 72ec:find_loopvar_3
  547. 72d7:find_loopvars
  548. 7270:Set_loop_increment
  549. 6fbc:iterate_loop
  550. 61365:AddShort2_Rolld:
  551. 61353:AddShort1_Rolld:
  552. 6133e:AddShort_Rolld
  553. 6132c:SubShort_Rolld
  554. 61318:AddShort2_Roll
  555. 61305:AddShort2_Roll_xx
  556. 612f3:AddShort1_Roll
  557. 612de:AddShort_Roll
  558. 612cc:SubShort_Roll
  559. 6102f:set_a_rplret
  560. 611d2:Add3_Pick
  561. 32f3:pick_a_from_c
  562. 611b0:get1short
  563. 61160:Back_fp_3_words
  564. 60f8f:dec_d_rplret
  565. 60f8d:sub_d_2_rplret
  566. 60f8b:sub_d_3_rplret
  567. 61099:Dup_Rolld
  568. 6106b:Roll7
  569. 61002:Roll6
  570. 60fd8:Roll5
  571. 60fbb:Roll4
  572. 60f83:drop4
  573. 60f7e:Drop4
  574. 60f54:Drop7
  575. 188af:Need2StringsEqualLen_Swap
  576. 62b6f:While_ShortZerop
  577. 62b0b:Drop2_False
  578. 6266d:push_a_ref_3
  579. 6281a:Sub1_Dup
  580. 62809:Add1_Dup
  581. 627f8:SubShort_Dup
  582. 3f14:shortpushR0R1_rplret
  583. 624b3:save_regs_ref_2
  584. 624ac:restore_regs_ref_2
  585. 6249e:getshort_ref_2
  586. 62bc4:Rolld7
  587. 5622:Strlen_of_lev2
  588. 1884d:Short0_End
  589. 6e97:Get_value
  590. 220f6:Disp_IO_settings
  591. 2ede1=Buflen
  592. 2eda6:Kerrm
  593. 2ed10:Transio_real
  594. 2d9f5=Server
  595. 2e876=Finish
  596. 18d07:shortpush_a_replret
  597. 18bb3:assert_c_gt3_args
  598. 18b87:assert_5_args
  599. 18bac:assert_4_args
  600. 18a8d:Need_2_args
  601. 18a80:Need_2_args_retq
  602. 18a75:assert_3_args
  603. 18a68:Need_3_args
  604. 18a5b:Need_3_args_retq
  605. 18aa5:Need_1_arg_retq
  606. 18ac6:assert_c_args
  607. 18ab7:need_1_arg
  608. 12002:rplret_8
  609. 162ac:Real_to_string
  610. 6657:Copy
  611. 2e6eb=Send_list
  612. 2e5ab=Send_name
  613. 2ee97:Srecv
  614. 2ee6f:Xmit
  615. 65a38:RE_Real_alt
  616. 65a38:RE_Real_alt
  617. 64775:UnTag
  618. 64331:Short_0_0_2
  619. 6431d:Short_0_0_1
  620. 64309:Short_0_0_0
  621. 642f7:Short_4_5
  622. 642bf:Short_2_4
  623. 642af:Short_2_2
  624. 6429d:Short_2_1
  625. 64209:Short_0_1
  626. 641fc:Short_0_0
  627. 64236:pushsmallshort_a
  628. 63eb1:IfGreater_then_else
  629. 63e9d:IfLess_then_else
  630. 63e89:IfNonZero_then_else
  631. 63e61:IfNotFalse_then_else
  632. 63a15:Short_Endq
  633. 636b4:EqualShort5p
  634. 63673:LessShort3p
  635. 6365f:Over_LessShort
  636. 6364b:Over_NonzeroShortp
  637. 74e4:Store_Locals_N
  638. 74d0:ListAlgPrgTo_StoreLocals
  639. 6fd1:Eval_prev_context
  640. 63466:Drop_Next
  641. 6344d:Swap_Next
  642. 63439:Over_CurLoopInc
  643. 63399:Skip_if_GreaterShort
  644. 632a9:Swap_RtoC
  645. 5be9:Name_to_string
  646. 3672:restore_regs_pusha_ret
  647. 5e9f:Tag
  648. 5e81:StrTag
  649. 5d2c:Complex_to_reals
  650. 5c27:Two_reals_to_complex
  651. 5b15:Str_to_Global
  652. 63281:RightStr_Plus1
  653. 63245:Substr_Less1
  654. 6321d:Dup_ShortEndp
  655. 63209:Dup_Short5p
  656. 631f5:Swap_ListAlgPrgTo
  657. 631cd:List3
  658. 631b9:List2
  659. 631a5:ToListLess1
  660. 63191:Add_LF
  661. 63079:Short0_Over
  662. 63065:SubShort_Over
  663. 63051:AddShort_Over
  664. 63029:Drop_Over
  665. e914:testlist
  666. e909:test_1dh
  667. e8fe:testbinary
  668. e8f3:testEnd
  669. cbd1:error_inv_repeat
  670. cbc4:error_inv_time
  671. cbb7:error_inv_date
  672. cbde:error_nonexist_alrm
  673. cbef:restore_regs_and_p
  674. 3574c:rplret_7
  675. 35b90:Switch_R_C_LR_and_R_LR
  676. 35b4f:Switch_R_C_LR
  677. 35c14:popd1_eval_ret_ref
  678. 35b42:eval_ret
  679. 35ada:getshort_ref
  680. 2e31f:pushr0_and_false
  681. 62fd9:DecShort_Rot
  682. 62fc5:Drop_Rot
  683. 62fb1:Dup_Rot
  684. 62f1b:Swap_if_true
  685. 62eb7:DropLev2and3_True
  686. 62e67:Short1_Swap
  687. 62e4e:DecShort_Short1_Swap
  688. 62e3a:Short0_Swap
  689. 62e26:IncShort_Swap
  690. 62d59:NullString_Swap
  691. 4dd7:Split_short
  692. 6537:shortpush_r0
  693. 6529:shortpush_r0r1
  694. 4e37:Bind_70600
  695. 4d43:set_string_null
  696. 5566:Short_5_p_alt
  697. 558a:settrue_if_CEqA_elseFalse
  698. 55b7:Short__End_p
  699. 556f:Short_5_p
  700. 558f:settrue
  701. 55a3:setfalse
  702. 501b:error_undef_xlib_name
  703. 5016:Error_Undef_xlib_name
  704. 500f:error_obj_not_in_port
  705. 500a:Error_Obj_not_in_port
  706. 4ffe:Error_No_room_in_port
  707. 4ff7:error_port_not_avail
  708. 4ff2:Error_Port_not_avail
  709. 4feb:error_obj_in_use
  710. 4fe6:Error_Obj_in_use
  711. 4fdf:error_inv_card_data
  712. 4fda:Error_Inv_card_data
  713. 4fd3:error_undef_local
  714. 4fce:Error_Undef_local
  715. 4fc7:error_dir_recursion
  716. 4fc2:Error_Dir_Recursion
  717. 4fbb:error_insuff_mem
  718. 4fb6:Error_Insuff_mem
  719. 62dcc:Rot_AddShort_Swap
  720. 62d9f:Swap_if_notFalse
  721. 5acc:Settype
  722. 39be:blkalloc_keep_c
  723. 6fd6:eval_and_ret
  724. 18eba:Eval_ListOrPrg
  725. 61984:If_notTrueDrop2Ret
  726. 6197c:drop2ret
  727. 61970:If_TrueDrop2Ret
  728. 61957:dropret
  729. 61a47:rpl_end_ref
  730. 61a58:If_not_thenDropSkip
  731. 61a8e:IfLev3_thenLev2_elseLev1_Ret
  732. 61ae9:If_ret_then_else
  733. 61ace:pop2_rplret
  734. 61b72:Drop_if_not_True
  735. 58d75=Show_local
  736. 58d75=Show_global
  737. 591ad=Quad
  738. 3fdd1=Rules
  739. 57d90=Colct
  740. 5055a:GROB_Cross_Cursor
  741. 5053c:GROB_Plus_Cursor
  742. 618e8:Skip_if_true_else_drop_ret
  743. 61903:skip_3
  744. 618d3:Skip_if_not_short_equal_drop
  745. 618ba:Skip_if_not_eq
  746. 61735:Store_local18
  747. 61725:Store_local17
  748. 61715:Store_local16
  749. 61705:Store_local15
  750. 616f5:Store_local14
  751. 616e5:Store_local13
  752. 616d5:Store_local12
  753. 616c5:Store_local11
  754. 616b5:Store_local10
  755. 616a5:Store_local9
  756. 61695:Store_local8
  757. 61685:Store_local7
  758. 61675:Store_local6
  759. 61665:Store_local5
  760. 61655:Store_local4
  761. 61645:Store_local3
  762. 61635:Store_local2
  763. 61625:Store_local1
  764. 3330:roll_a_levels
  765. 6134c:rolld_a_lev_ref
  766. 61589:getlocal_c
  767. 70764=st_save
  768. 70597=BOS
  769. 8dd4:Homep
  770. 20980:Incr_local
  771. 20917:Incr_global
  772. 549db:Local_dvar
  773. 62504:pushShortA_alt_ref_2
  774. 35ae1:save_regs_ref
  775. 6284b:Swap_drop_swap
  776. 62829:get2shorts_ref
  777. 63e1b:Return_if_notReal
  778. 629a1:Ret_if_True
  779. 61998:ret_if_false
  780. 62986:Ret_if_notTrue
  781. 62278:getshort_2
  782. 62063:teststack
  783. 62198:Arrayp
  784. 62183:Complexp
  785. 61a18:Return_if_short_0
  786. 626e5:Skip_2_exec
  787. 626ae:Skip_5_exec
  788. 61a4e:rplret_6
  789. 619a6:skip_ref
  790. 7161:skip_two
  791. 7152:skip
  792. 712a:Skip_if_True
  793. 3019:getinstr
  794. 619d6:rplret_4
  795. 6fd6:rpl_return
  796. 62691:mul6_short
  797. 62674:mul8_short
  798. 62636:pushShort_add_c
  799. 3585:rplret_3
  800. 62025:Charp
  801. 6205b:test_type_vs_c
  802. 18c77:save_toh_sub_10
  803. 7065a=toh_sub_10
  804. 18cb7:error_bad_arg_type
  805. 18cb2:Error_Bad_arg_type
  806. 5023:disp_error_a
  807. 18cce:disp_error_c
  808. 18cc7:error_too_few_args
  809. 620dc:ret_False
  810. 620c0:ret_TrueFalse_2
  811. 620d9:ret_FalseTrue_2
  812. 620d2:ret_FalseTrue
  813. 620c3:ret_True
  814. 620b9:ret_TrueFalse
  815. 363a436d=ret_c
  816. 31666563=ret_c
  817. 3030633a=ret_c
  818. 595dd=Taylr
  819. 645b1:Strpos
  820. 1cad7:Pos_string_string
  821. 19529=ListOf_short_to_real
  822. 35a9=Arrdims_listofshort
  823. 61087:pushc15_r15_a5_rplret
  824. 3a86:pusha_rplret
  825. 5ec10:spanstack
  826. 6386c:Swap_dup2
  827. 63808:Add_dec_short
  828. 637f4:Drop_dec_short
  829. 3d4e:NotEqual_short_short
  830. 3ce4:LessThan_short_short
  831. 3c64:Type_to_short
  832. 3cc7:Zerop_short
  833. 3ca6:Nonzerop_short
  834. 3b46:If_not_false
  835. 3ee5:Mul_short_short_done
  836. 3ed9:Mul_short_short_loop
  837. 3e8e:Div2_short
  838. 3e4e:Dec2_short
  839. 3e0e:Dec_short
  840. 3def:Inc_short
  841. 3dc7:Push_A_and_rplret
  842. 6372c:Over_add
  843. 63704:Dup2_add
  844. 3f5d:get2shorts
  845. 636f0:Greater1p
  846. 1ca26:Size_string
  847. 141b2:Beep
  848. 54451:Real_to_Bin_x_positive
  849. 29fda:getreal
  850. 5821=Sub_Arr_Short_Short
  851. 1950b:TwoShorts_to_reals
  852. 18ef0:Switch_on_3argtypes
  853. 5089=RE_Unit
  854. 54ea0=RE_Algebraic
  855. 35f8f=RE_ComplexArr
  856. 519a3=RE_Complex
  857. 6e8e:RE_Real
  858. 2373f:Local_noname
  859. 2372e:Local_stop
  860. 73a5:Step
  861. 73f7:Start_short_short
  862. 73db:Start_1_shortSub1
  863. 73c3:Start_0or1_shortSub1
  864. 7334:Next
  865. 3ac0:False
  866. 3a81:True
  867. 23754:Locals_noname_stop
  868. 22f4f:Then_alg
  869. 22ed7:If_Prompt
  870. 5193=Add_string_string
  871. 4f8d1=Add_grob_grob
  872. 55f2b=Add_alg_real
  873. 55f44=Add_real_alg
  874. 55f5d=Add_alg_alg
  875. f6a2=Add_unit_unit
  876. 51c16=Add_complex_complex
  877. 51bd0=Add_complex_real
  878. 51bf8=Add_real_complex
  879. 1957b:Cmd_ASR
  880. 1c3cf:Cmd_GRAD
  881. 1fc7f:Cmd_DUPN
  882. 1959b:Cmd_RL
  883. 1c3ea:Cmd_FIX
  884. 1fc9a:Cmd_PICK
  885. 195bb:Cmd_RLB
  886. 1c41e:Cmd_SCI
  887. 1fcb5:Cmd_ROLL
  888. 195db:Cmd_RR
  889. 1c452:Cmd_ENG
  890. 1fcd0:Cmd_ROLLD
  891. 195fb:Cmd_RRB
  892. 1c486:Cmd_STD
  893. 1fceb:Cmd_CLEAR
  894. 1961b:Cmd_SL
  895. 1c4a1:Cmd_FSC
  896. 1fd0b:Cmd_STOsigma
  897. 1963b:Cmd_SLB
  898. 1c520:Cmd_FCC
  899. 1fd2b:Cmd_CLsigma
  900. 1965b:Cmd_SR
  901. 1c559:Cmd_BIN
  902. 1fd46:Cmd_RCLsigma
  903. 1967b:Cmd_SRB
  904. 1c574:Cmd_DEC
  905. 1fd61:Cmd_sigmaAdd
  906. 1969b:Cmd_RtoB
  907. 1c58f:Cmd_HEX
  908. 1fd8b:Cmd_sigmaSub
  909. 196bb:Cmd_BtoR
  910. 1c5aa:Cmd_OCT
  911. 1fda6:Cmd_Nsigma
  912. 196db:Cmd_CONVERT
  913. 1c5c5:Cmd_STWS
  914. 1fdc1:Cmd_CORR
  915. 1971b:Cmd_UVAL
  916. 1c5fe:Cmd_RCWS
  917. 1fddc:Cmd_COV
  918. 1974f:Cmd_UNIT
  919. 1c619:Cmd_RCLF
  920. 1fdf7:Cmd_sigmaX
  921. 19771:Cmd_UBASE
  922. 1c67f:Cmd_STOF
  923. 1fe12:Cmd_sigmaY
  924. 197a5:Cmd_UFACT
  925. 1fe2d:Cmd_sigmaXsq
  926. 197f7:Cmd_TIME
  927. 1c79e:Cmd_RtoC
  928. 1fe48:Cmd_sigmaYsq
  929. 19812:Cmd_DATE
  930. 1c7ca:Cmd_RE
  931. 1fe63:Cmd_sigmaXmulY
  932. 1982d:Cmd_TICKS
  933. 1c819:Cmd_IM
  934. 1fe7e:Cmd_MAXsigma
  935. 19848:Cmd_WSLOG
  936. 1c85c:Cmd_SUB
  937. 1fe99:Cmd_MEAN
  938. 19863:Cmd_ACKALL
  939. 1c8ea:Cmd_REPL
  940. 1feb4:Cmd_MINsigma
  941. 1987e:Cmd_ACK
  942. 1c95a:Cmd_LISTto
  943. 1fecf:Cmd_SDEV
  944. 1989e:Cmd_toDATE
  945. 1c98e:Cmd_CtoR
  946. 1feea:Cmd_TOT
  947. 198be:Cmd_toTIME
  948. 1c9b8:Cmd_SIZE
  949. 1ff05:Cmd_VAR
  950. 198de:Cmd_CLKADJ
  951. 1cab4:Cmd_POS
  952. 1ff20:Cmd_LR
  953. 198fe:Cmd_STOALRM
  954. 1cb0b:Cmd_toSTR
  955. 1ff7a:Cmd_PREDV
  956. 19928:Cmd_RCLALRM
  957. 1cb26:Cmd_STRto
  958. 1ff9a:Cmd_PREDY
  959. 19948:Cmd_FNDALRM
  960. 1cb46:Cmd_NUM
  961. 1ffba:Cmd_PREDX
  962. 19972:Cmd_DELALRM
  963. 1cb66:Cmd_CHR
  964. 1ffda:Cmd_XCOL
  965. 19992:Cmd_TSTR
  966. 1cb86:Cmd_TYPE
  967. 1fffa:Cmd_YCOL
  968. 199b2:Cmd_DDAYS
  969. 1ce28:Cmd_VTYPE
  970. 2001a:Cmd_UTPC
  971. 199d2:Cmd_DATEadd
  972. 1cee3:Cmd_EQto
  973. 2003a:Cmd_UTPN
  974. 1a105:Cmd_CRDIR
  975. 1cf7b:Cmd_OBJto
  976. 2005a:Cmd_UTPF
  977. 1a125:Cmd_PATH
  978. 1d009:Cmd_toARRAY
  979. 2007a:Cmd_UTPT
  980. 1a140:Cmd_HOME
  981. 1d092:Cmd_ARRYto
  982. 2009a:Cmd_COLsigma
  983. 1a15b:Cmd_UPDIR
  984. 1d0de:Cmd_RDM
  985. 200c4:Cmd_SCLsigma
  986. 1a194:Cmd_VARS
  987. 1d186:Cmd_CON
  988. 200f3:Cmd_sigmaLINE
  989. 1a1af:Cmd_TVARS
  990. 1d2dc:Cmd_IDN
  991. 2010e:Cmd_BINS
  992. 1a1d9:Cmd_BYTES
  993. 1d392:Cmd_TRN
  994. 20133:Cmd_BARPLOT
  995. 1a2bc:Cmd_NEWOB
  996. 1d407:Cmd_PUT
  997. 20167:Cmd_HISTPLT
  998. 1a303:Cmd_KILL
  999. 1d5df:Cmd_PUTI
  1000. 2018c:Cmd_SCTRPLT
  1001. 1a31e:Cmd_OFF
  1002. 1d7c6:Cmd_GET
  1003. 201b1:Cmd_LINFIT
  1004. 1a339:Cmd_DOERR
  1005. 1d8c7:Cmd_GETI
  1006. 201d6:Cmd_LOGFIT
  1007. 1a36d:Cmd_ERR0
  1008. 1dd06:Cmd_Vto
  1009. 201fb:Cmd_EXPFIT
  1010. 1a388:Cmd_ERRN
  1011. 1de66:Cmd_toV2
  1012. 20220:Cmd_PWRFIT
  1013. 1a3a3:Cmd_ERRM
  1014. 1dec2:Cmd_toV3
  1015. 2025e:Cmd_BESTFIT
  1016. 1a3be:Cmd_EVAL
  1017. 1e04a:Cmd_INDEP
  1018. 202ce:Cmd_SINV
  1019. 1a3fe:Cmd_IFTE
  1020. 1e07e:Cmd_PMIN
  1021. 2034d:Cmd_SNEG
  1022. 1a4cd:Cmd_IFT
  1023. 1e09e:Cmd_PMAX
  1024. 203cc:Cmd_SCONJ
  1025. 1a52e:Cmd_SYSEVAL
  1026. 1e0be:Cmd_AXES
  1027. 2044b:Cmd_STOadd
  1028. 1a584:Cmd_DISP
  1029. 1e0e8:Cmd_CENTR
  1030. 20538:Cmd_STOsub
  1031. 1a5a4:Cmd_FREEZE
  1032. 1e126:Cmd_RES
  1033. 2060c:Cmd_STOdiv
  1034. 1a5c4:Cmd_BEEP
  1035. 1e150:Cmd_mulH
  1036. 20753:Cmd_STOmul
  1037. 1a5e4:Cmd_toNUM
  1038. 1e170:Cmd_mulW
  1039. 208f4:Cmd_INCR
  1040. 1a604:Cmd_LASTARG
  1041. 1e190:Cmd_DRAW
  1042. 209aa:Cmd_DECR
  1043. 1a71f:Cmd_WAIT
  1044. 1e1ab:Cmd_AUTO
  1045. 20a15:Cmd_COLCT
  1046. 1a858:Cmd_CLLCD
  1047. 1e1c6:Cmd_DRAX
  1048. 20a49:Cmd_EXPAN
  1049. 1a873:Cmd_KEY
  1050. 1e1e1:Cmd_SCALE
  1051. 20a7d:Cmd_RULES
  1052. 1a8bb:Cmd_CONT
  1053. 1e201:Cmd_PDIM
  1054. 20a93:Cmd_ISOL
  1055. 1a8d8:Cmd_equal
  1056. 1e22b:Cmd_DEPND
  1057. 20ab3:Cmd_QUAD
  1058. 1a995:Cmd_NEG
  1059. 1e25f:Cmd_ERASE
  1060. 20ad3:Cmd_SHOW
  1061. 1aa1f:Cmd_ABS
  1062. 1e27a:Cmd_PXtoC
  1063. 20b20:Cmd_TAYLR
  1064. 1aa6e:Cmd_CONJ
  1065. 1e29a:Cmd_CtoPX
  1066. 20b40:Cmd_RCL
  1067. 1aabd:Cmd_pi
  1068. 1e2ba:Cmd_GRAPH
  1069. 20ccd:Cmd_STO
  1070. 1aadf:Cmd_MAXR
  1071. 1e2d5:Cmd_LABEL
  1072. 20d65:Cmd_DEFINE
  1073. 1ab01:Cmd_MINR
  1074. 1e2f0:Cmd_PVIEW
  1075. 20efe:Cmd_PURGE
  1076. 1ab23:Cmd_e
  1077. 1e31a:Cmd_PIXON
  1078. 20faa:Cmd_MEM
  1079. 1ab45:Cmd_i
  1080. 1e344:Cmd_PIXOFF
  1081. 20fd9:Cmd_ORDER
  1082. 1ab67:Cmd_add
  1083. 1e36e:Cmd_PIXp
  1084. 210fc:Cmd_CLVAR
  1085. 1e398:Cmd_LINE
  1086. 2115d:Cmd_TMENU
  1087. 1ad09:Cmd_sub
  1088. 1e3c2:Cmd_TLINE
  1089. 21196:Cmd_MENU
  1090. 1adee:Cmd_mul
  1091. 1e3ec:Cmd_BOX
  1092. 211e1:Cmd_RCLMENU
  1093. 1af05:Cmd_div
  1094. 1e416:Cmd_BLANK
  1095. 211fc:Cmd_PVARS
  1096. 1b02d:Cmd_pwr
  1097. 1e436:Cmd_PICT
  1098. 2123a:Cmd_PGDIR
  1099. 1b1ca:Cmd_XROOT
  1100. 1e456:Cmd_GOR
  1101. 2125a:Cmd_ARCHIVE
  1102. 1e4e4:Cmd_GXOR
  1103. 2133c:Cmd_RESTORE
  1104. 1b278:Cmd_INV
  1105. 1e572:Cmd_LCDto
  1106. 2137f:Cmd_MERGE
  1107. 1b2db:Cmd_ARG
  1108. 1e58d:Cmd_toLCD
  1109. 213d1:Cmd_FREE
  1110. 1b32a:Cmd_sigmaN
  1111. 1e5ad:Cmd_toGROB
  1112. 2142d:Cmd_LIBS
  1113. 1b374:Cmd_sqrt
  1114. 1e5d2:Cmd_ARC
  1115. 21448:Cmd_ATTACH
  1116. 1b426:Cmd_SQ
  1117. 1e606:Cmd_TEXT
  1118. 2147c:Cmd_DETACH
  1119. 1b4ac:Cmd_SIN
  1120. 1e621:Cmd_XRNG
  1121. 21e75:Cmd_XMIT
  1122. 1b505:Cmd_COS
  1123. 1e641:Cmd_YRNG
  1124. 21e95:Cmd_SRECV
  1125. 1b55e:Cmd_TAN
  1126. 1e661:Cmd_FUNCTN
  1127. 21eb5:Cmd_OPENIO
  1128. 1b5b7:Cmd_SINH
  1129. 1e681:Cmd_CONIC
  1130. 21ed5:Cmd_CLOSEIO
  1131. 1b606:Cmd_COSH
  1132. 1e6a1:Cmd_POLAR
  1133. 21ef0:Cmd_SEND
  1134. 1b655:Cmd_TANH
  1135. 1e6c1:Cmd_PARMTRC
  1136. 21f24:Cmd_KGET
  1137. 1b6a4:Cmd_ASIN
  1138. 1e6e1:Cmd_TRUTH
  1139. 21f62:Cmd_RECN
  1140. 1b72f:Cmd_ACOS
  1141. 1e701:Cmd_SCATTER
  1142. 21f96:Cmd_RECV
  1143. 1b79c:Cmd_ATAN
  1144. 1e721:Cmd_HISTGRM
  1145. 21fb6:Cmd_FINISH
  1146. 1b7eb:Cmd_ASINH
  1147. 1e741:Cmd_BAR
  1148. 21fd1:Cmd_SERVER
  1149. 1b830:Cmd_ACOSH
  1150. 1e761:Cmd_SAME
  1151. 21fec:Cmd_CKSM
  1152. 1b8a2:Cmd_ATANH
  1153. 1e783:Cmd_AND
  1154. 2200c:Cmd_BAUD
  1155. 1b905:Cmd_EXP
  1156. 1e809:Cmd_OR
  1157. 2202c:Cmd_PARITY
  1158. 1b94f:Cmd_LN
  1159. 1e88f:Cmd_NOT
  1160. 2204c:Cmd_TRANSIO
  1161. 1b9c6:Cmd_LOG
  1162. 1e8f6:Cmd_XOR
  1163. 2206c:Cmd_KERRM
  1164. 1ba3d:Cmd_ALOG
  1165. 1e972:Cmd_equalp
  1166. 22087:Cmd_BUFLEN
  1167. 1ba8c:Cmd_LNP1
  1168. 1ea9d:Cmd_notEqualp
  1169. 220a2:Cmd_STIME
  1170. 1bac2:Cmd_EXPM
  1171. 1ebbe:Cmd_lessThanp
  1172. 220c2:Cmd_SBRK
  1173. 1bb02:Cmd_fact
  1174. 1ec5d:Cmd_greaterThanp
  1175. 220dd:Cmd_PKT
  1176. 1bb41:Cmd_FACT
  1177. 1ecfc:Cmd_lessOrEqp
  1178. 224ca:Cmd_INPUT
  1179. 1bb6d:Cmd_IP
  1180. 1ed9b:Cmd_greaterOrEqp
  1181. 224f4:Cmd_ASN
  1182. 1bba3:Cmd_FP
  1183. 1ee38:Cmd_OLDPRT
  1184. 22514:Cmd_STOKEYS
  1185. 1bbd9:Cmd_FLOOR
  1186. 1ee53:Cmd_PR1
  1187. 22548:Cmd_DELKEYS
  1188. 1bc0f:Cmd_CEIL
  1189. 1ee6e:Cmd_PRSTC
  1190. 22586:Cmd_RCLKEYS
  1191. 1bc45:Cmd_XPON
  1192. 1ee89:Cmd_PRST
  1193. 225be:Cmd_toTAG
  1194. 1bc71:Cmd_MAX
  1195. 1eea4:Cmd_CR
  1196. 22633:Cmd_DTAG
  1197. 1bce3:Cmd_MIN
  1198. 1eebf:Cmd_PRVAR
  1199. 22ec3:Cmd_IF
  1200. 1bd55:Cmd_RND
  1201. 1ef43:Cmd_DELAY
  1202. 22efa:Cmd_THEN
  1203. 1bdd1:Cmd_TRNC
  1204. 1ef63:Cmd_PRLCD
  1205. 22fb5:Cmd_ELSE
  1206. 1be4d:Cmd_MOD
  1207. 1ef7e:Cmd_delta
  1208. 22fd5:Cmd_END
  1209. 1be9c:Cmd_MANT
  1210. 1efcc:Cmd_delta
  1211. 22feb:Cmd_toVars
  1212. 1bec8:Cmd_DtoR
  1213. 1f133:Cmd_RCEQ
  1214. 23033:Cmd_WHILE
  1215. 1bef4:Cmd_RtoD
  1216. 1f14e:Cmd_STEQ
  1217. 2305d:Cmd_REPEAT
  1218. 1bf1e:Cmd_toHMS
  1219. 1f16e:Cmd_ROOT
  1220. 230c3:Cmd_DO
  1221. 1bf3e:Cmd_HMSto
  1222. 1f1d4:Cmd_integral
  1223. 230ed:Cmd_UNTIL
  1224. 1bf5e:Cmd_HMSadd
  1225. 1f21d:Cmd_integral
  1226. 23103:Cmd_START
  1227. 1bf7e:Cmd_HMSsub
  1228. 1f2c9:Cmd_sigma
  1229. 231a0:Cmd_FOR
  1230. 1bf9e:Cmd_RNRM
  1231. 1f354:Cmd_where
  1232. 2324c:Cmd_NEXT
  1233. 1bfbe:Cmd_CNRM
  1234. 1f3ed:Cmd_where_2
  1235. 23380:Cmd_STEP
  1236. 1bfde:Cmd_DET
  1237. 1f500:Cmd_QUOTE
  1238. 233df:Cmd_IFERR
  1239. 1bffe:Cmd_DOT
  1240. 1f55d:Cmd_APPLY
  1241. 23472:Cmd_HALT
  1242. 1c007:Cmd_percentT
  1243. 1f9c4:Cmd_toQ
  1244. 2349c:Cmd_blank
  1245. 1c01e:Cmd_CROSS
  1246. 1f9e9:Cmd_toQpi
  1247. 1c03e:Cmd_RSD
  1248. 1fa59:Cmd_upMATCH
  1249. 235fe:Cmd_endPrg
  1250. 1c060:Cmd_percent
  1251. 1fa8d:Cmd_downMATCH
  1252. 2361e:Cmd_beginPrg
  1253. 1c149:Cmd_percentCH
  1254. 1faeb:Cmd__
  1255. 23639:Cmd_endPrg_2
  1256. 1c1b9:Cmd_RAND
  1257. 1fb5d:Cmd_RATIO
  1258. 23654:Cmd_quote
  1259. 1c1d4:Cmd_RDZ
  1260. 1fb87:Cmd_DUP
  1261. 23679:Cmd_quote_2
  1262. 1c1f6:Cmd_COMB
  1263. 1fba2:Cmd_DUP2
  1264. 23694:Cmd_END
  1265. 1c236:Cmd_PERM
  1266. 1fbbd:Cmd_SWAP
  1267. 236b9:Cmd_END
  1268. 1c274:Cmd_SF
  1269. 1fbd8:Cmd_DROP
  1270. 22efa:Cmd_THEN
  1271. 1c2d5:Cmd_CF
  1272. 1fbf3:Cmd_DROP2
  1273. 2378d:Cmd_CASE
  1274. 1c313:Cmd_FSp
  1275. 1fc0e:Cmd_ROT
  1276. 237a8:Cmd_THEN
  1277. 1c360:Cmd_FCp
  1278. 1fc29:Cmd_OVER
  1279. 23813:Cmd_DIR
  1280. 1c399:Cmd_DEG
  1281. 1fc44:Cmd_DEPTH
  1282. 23824:Cmd_PROMPT
  1283. 1c3b4:Cmd_RAD
  1284. 1fc64:Cmd_DROPN
  1285. 3a69a:key_quote
  1286. 3a6b3:key_bshf_X
  1287. 3a6cc:key_oshf_div
  1288. 3a6e5:key_oshf_PRG
  1289. 3a71c:key_NXT
  1290. 3a735:key_oshf_NXT
  1291. 3a7a3:key_oshf_4
  1292. 3a7c6:key_oshf_plusMinus
  1293. 3a7f3:key_ENTER
  1294. 3a834:key_left
  1295. 3a893:key_oshf
  1296. 3a8c5:key_bshf
  1297. 3a8de:key_right
  1298. 3a93d:key_up
  1299. 3aa0a:key_alpha
  1300. 3aa37:key_alpha_oshf
  1301. 3aa50:key_alpha
  1302. 3aa69:key_alpha_bshf
  1303. 3aa82:key_plusMinus
  1304. 3aa9b:key_plusMinus
  1305. 3aaeb:key_bshf_DEL
  1306. 3ab59:key_oshf_9
  1307. 3ab72:key_CST
  1308. 3ab8b:key_oshf_add
  1309. 3aba4:key_oshf_x
  1310. 3abbd:key_alpha_oshf_sub
  1311. 3abd6:key_oshf_sub
  1312. 3abef:key_bshf_add
  1313. 3ac08:key_bshf_div
  1314. 3ac21:key_bshf_sub
  1315. 3ac3a:key_EEX
  1316. 3acbc:key_oshf_3
  1317. 3ad57:key_MTH
  1318. 3ad70:key_oshf_VAR
  1319. 3ad89:key_bshf_VAR
  1320. 3ada2:key_oshf_CST
  1321. 3adbb:key_bshf_CST
  1322. 3aded:key_oshf_8
  1323. 3ae1a:key_PRG
  1324. 3ae33:key_oshf_MTH
  1325. 3ae4c:key_oshf_down
  1326. 3ae6f:key_oshf_up
  1327. 3ae88:key_oshf_7
  1328. 3aeb5:key_oshf_5
  1329. 3aee2:key_bshf_5
  1330. 3af05:key_oshf_6
  1331. 3af1e:key_bshf_6
  1332. 3af37:key_VAR
  1333. 3af50:key_oshf_ENTER
  1334. 3af69:key_bshf_plusMinus
  1335. 3af73:key_bshf_plusMinus
  1336. 3b068:key_bshf_ENTER
  1337. 3b081:key_bshf_alpha
  1338. 3b095:key_bshf_alpha
  1339. 3b0db:key_oshf_alpha
  1340. 3b1b7:key_bshf_1
  1341. 3b1cb:key_oshf_1
  1342. 3fd36:key_alpha
  1343. 3fd63:key_alpha_oshf
  1344. 3fd90:key_alpha_bshf
  1345. 40d25:key_alpha_alpha
  1346. 70000:RAM_base
  1347. 80000:P0_base
  1348. c0000:P1_base
  1349. f0000:Scan_RAM_base
  1350. 7045c:intr_save_usr
  1351. 705b0=TOH
  1352. 70579=TOS
  1353. 7057e:EOS
  1354. 70592:homedir
  1355. 70597:end_homedir
  1356. 7059c:cur_dir
  1357. 70713:stk_LComp
  1358. 70968:stk_GROB
  1359. 7096d:stk_GROB_len
  1360. 70972:stk_GROB_h
  1361. 70977:stk_GROB_w
  1362. 7097c:stk_dispmem
  1363. 70844:menu_GROB
  1364. 70849:menu_GROB_len
  1365. 7084e:menu_GROB_h
  1366. 70853:menu_GROB_w
  1367. 70858:menu_dispmem
  1368. 710ec:plot_GROB
  1369. 710f1:plot_GROB_len
  1370. 710f6:plot_GROB_h
  1371. 710fb:plot_GROB_w
  1372. 71100:plot_dispmem
  1373. 11f:7_or_f_map
  1374. 1160:do_in.4
  1375. 679b:save_regs
  1376. d57:kbflush
  1377. 6806=avail_mem
  1378. 2933:type_Real
  1379. 2977:type_Complex
  1380. 2a2c:type_String
  1381. 29e8:type_Array
  1382. 2a74:type_List
  1383. 2e48:type_Gname
  1384. 2e6d:type_Lname
  1385. 2e92:type_Xname
  1386. 2d9d:type_Program
  1387. 2ab8:type_Algebraic
  1388. 2a4e:type_Binary
  1389. 2b1e:type_Graphic
  1390. 2afc:type_Tagged
  1391. 2ada:type_Unit
  1392. 2a96:type_Directory
  1393. 2b40:type_Library
  1394. 2b62:type_Backup
  1395. 2e92:type_Func
  1396. 2911:type_Address
  1397. 2955:type_LReal
  1398. 299d:type_LComplex
  1399. 2a0a:type_Arr_Linked
  1400. 29bf:type_Char
  1401. 2dcc:type_Code
  1402. 2b88:type_Libdata
  1403. 5b88:str_try_again
  1404. 5bad:str_avail
  1405. 70e4a:keybuf_usr
  1406. f0e4a:keybuf_scan
  1407. 4ea:keybuf
  1408. 45c:intr_save_offset
  1409. 67d2:restore_regs
  1410. 100:display_IO
  1411. 138:clock
  1412. 1633d:GC
  1413. 6ad8:blkalloc
  1414. 3188:Dup
  1415. 3244=Drop
  1416. 32c2:Over
  1417. 73ce:Start_1_to_nSub1
  1418. 15442:"String_': '"
  1419. 15978:toString_1any
  1420. 18dbf:Short_to_real
  1421. 391ee:Freeze_display
  1422. 624ba:Min_1short2short
  1423. 3f8b:Short__type_Real
  1424. 3f95:Short__type_Complex
  1425. 3f9f:Short__type_List
  1426. 3fa9:Short__type_Gname
  1427. 3fb3:Short__type_Program
  1428. 3fbd:Short__type_Algebraic
  1429. 3fc7:Short__type_Directory
  1430. 3fd1:Short__type_Lname
  1431. 3fdb:Short__type_LReal
  1432. 3fe5:Short__type_Unit
  1433. 3fef:Short_0
  1434. 3ff9:Short_1
  1435. 4003=Short_2
  1436. 400d=Short_3
  1437. 4017=Short_4
  1438. 4021=Short_5
  1439. 402b=Short_6
  1440. 4035=Short_7
  1441. 403f:Short_8
  1442. 4049:Short_9
  1443. 4053=Short_0ah
  1444. 405d=Short_0bh
  1445. 4067:Short_0ch
  1446. 4071:Short_0dh
  1447. 407b=Short_0eh
  1448. 4085:Short_0fh
  1449. 408f:Short_10h
  1450. 4099=Short_11h
  1451. 40a3=Short_12h
  1452. 40ad:Short_13h
  1453. 40b7:Short_14h
  1454. 40c1:Short_15h
  1455. 40cb:Short_16h
  1456. 40d5:Short_17h
  1457. 40df:Short_18h
  1458. 40e9:Short_19h
  1459. 40f3=Short_1ah
  1460. 40fd=Short_1bh
  1461. 4107:Short_1ch
  1462. 4111:Short_1dh
  1463. 411b=Short_1eh
  1464. 4125:Short_1fh
  1465. 412f:Short_20h
  1466. 4139=Short_21h
  1467. 4143=Short_22h
  1468. 414d:Short_23h
  1469. 4157:Short_24h
  1470. 4161:Short_25h
  1471. 416b:Short_26h
  1472. 4175:Short_27h
  1473. 417f:Short_28h
  1474. 4189:Short_29h
  1475. 4193=Short_2ah
  1476. 419d:Short_2bh
  1477. 64b12:Short_2ch
  1478. 64b1c=Short_2dh
  1479. 64b26:Short_2eh
  1480. 64b30:Short_2fh
  1481. 64b3a=Short_30h
  1482. 64b44:Short_31h
  1483. 64b4e:Short_32h
  1484. 64b58=Short_33h
  1485. 64b62:Short_34h
  1486. 64b6c:Short_35h
  1487. 64b76:Short_36h
  1488. 64b80=Short_37h
  1489. 64b8a:Short_38h
  1490. 64b94:Short_39h
  1491. 64b9e:Short_3ah
  1492. 64ba8:Short_3bh
  1493. 64bb2:Short_3ch
  1494. 64bbc:Short_3dh
  1495. 64bc6:Short_3eh
  1496. 1cc9a:Short_3fh
  1497. 64bda:Short_40h
  1498. 64be4:Short_41h
  1499. 64bee:Short_42h
  1500. 64bf8:Short_43h
  1501. 64c02=Short_44h
  1502. 64c0c:Short_45h
  1503. 64c16:Short_46h
  1504. 64c20:Short_4ah
  1505. 1ccb9:Short_4fh
  1506. 64c34=Short_50h
  1507. 64c3e:Short_51h
  1508. 64c48:Short_52h
  1509. 64c52:Short_53h
  1510. 64c5c:Short_54h
  1511. 64c66=Short_55h
  1512. 64c70:Short_56h
  1513. 64c7a:Short_57h
  1514. 64c84:Short_5bh
  1515. 64c8e:Short_60h
  1516. 64c98:Short_61h
  1517. 64ca2:Short_62h
  1518. 64cac:Short_64h
  1519. 64cb6:Short_65h
  1520. 1ccf7:Short_6fh
  1521. 64cca:Short_70h
  1522. 64cd4:Short_71h
  1523. 64cde:Short_72h
  1524. 64ce8:Short_73h
  1525. 64cf2:Short_74h
  1526. 64cfc:Short_75h
  1527. 64d06:Short_7ah
  1528. 64d10:Short_80h
  1529. 64d1a:Short_82h
  1530. 64d24:Short_83h
  1531. 64d2e:Short_8fh
  1532. 64d38:Short_91h
  1533. 64d42:Short_92h
  1534. 64d4c:Short_9ah
  1535. 64d56:Short_9eh
  1536. 64d60:Short_9fh
  1537. 64d6a:Short_a0h
  1538. 64d74=Short_a1h
  1539. 64d7e=Short_a2h
  1540. 64d88:Short_a5h
  1541. 64d92:Short_a6h
  1542. 64d9c:Short_a7h
  1543. 64da6:Short_a9h
  1544. 64db0=Short_aah
  1545. 64dba=Short_aeh
  1546. 64dc4=Short_b1h
  1547. 64dce=Short_bbh
  1548. 64dd8:Short_c0h
  1549. 64de2=Short_cch
  1550. 64dec:Short_d0h
  1551. 64df6=Short_e1h
  1552. 64e00=Short_eah
  1553. 64e0a=Short_eeh
  1554. 64e14:Short_f0h
  1555. 64e1e:Short_fdh
  1556. 64e28:Short_ffh
  1557. 64e32:Short_100h
  1558. 64e3c:Short_102h
  1559. 64e46:Short_106h
  1560. 64e50:Short_107h
  1561. 64e5a:Short_110h
  1562. 64e64:Short_111h
  1563. 64e6e:Short_123h
  1564. 64e78:Short_124h
  1565. 64e82:Short_131h
  1566. 64e8c:Short_132h
  1567. 64e96:Short_133h
  1568. 64ea0:Short_134h
  1569. 64eaa:Short_135h
  1570. 64eb4:Short_136h
  1571. 64ebe:Short_137h
  1572. 64ec8:Short_138h
  1573. 64ed2:Short_139h
  1574. 64edc:Short_13ah
  1575. 64ee6:Short_13bh
  1576. 64ef0:Short_13dh
  1577. 64efa:Short_13eh
  1578. 64f04:Short_151h
  1579. 64f0e:Short_200h
  1580. 64f18=Short_205h
  1581. 64f22=Short_311h
  1582. 64f2c:Short_411h
  1583. 64f36:Short_412h
  1584. 64f40:Short_444h
  1585. 64f4a:Short_451h
  1586. 64f54:Short_452h
  1587. 64f5e:Short_510h
  1588. 64f68=Short_511h
  1589. 64f72:Short_550h
  1590. 64f7c:Short_610h
  1591. 64f86:Short_650h
  1592. 64f90:Short_700h
  1593. 64f9a:Short_861h
  1594. 64fa4:Short_862h
  1595. 64fae:Short_865h
  1596. 64fb8:Short_86eh
  1597. 64fc2:Short_a03h
  1598. 64fcc:Short_a11h
  1599. 64fd6:Short_a12h
  1600. 64fe0:Short_a1ah
  1601. 64fea:Short_a21h
  1602. 64ff4:Short_a22h
  1603. 64ffe:Short_a2ah
  1604. 65008:Short_a61h
  1605. 65012:Short_a62h
  1606. 6501c:Short_a65h
  1607. 65026:Short_a6eh
  1608. 65030:Short_aa1h
  1609. 6503a:Short_aa2h
  1610. 65044:Short_aaah
  1611. 6504e:Short_c06h
  1612. 65058:Short_c07h
  1613. 65062:Short_c08h
  1614. 6506c:Short_c0ah
  1615. 65076:Short_c0bh
  1616. 65080:Short_dffh
  1617. 6508a:Short_e00h
  1618. 65094:Short__RAM_base
  1619. 5176:Short_fffffh
  1620. 650a8:Real_2.71828182846
  1621. 650bd:"Real_5E-99"
  1622. 650d2:"Real_-5E-99"
  1623. 650e7:Real_10
  1624. 650fc:Real_180
  1625. 65111:Real_200
  1626. 65126:Real_360
  1627. 6513b:Real_400
  1628. 653c4:Short_726a5h
  1629. 653ce:Short_72704h
  1630. 653d8:Short_72dcfh
  1631. 653e2:Short_72f1eh
  1632. 653ec:Short_736f9h
  1633. 653f6:Short_7232ch
  1634. 65400:Short_7260ah
  1635. 6540a:Short_72281h
  1636. 65414:Short_72fe6h
  1637. 6541e:Char_000
  1638. 65425:Char_037
  1639. 6542c:Char_double_quote
  1640. 65433:Char_hash
  1641. 6543a:Char_mul
  1642. 65441:Char_add
  1643. 65448:Char_comma
  1644. 6544f:Char_sub
  1645. 65456:Char_period
  1646. 6545d:Char_div
  1647. 65464:Char_0
  1648. 6546b:Char_1
  1649. 65472:Char_2
  1650. 65479:Char_3
  1651. 65480:Char_4
  1652. 65487:Char_5
  1653. 6548e:Char_6
  1654. 65495:Char_7
  1655. 6549c:Char_8
  1656. 654a3:Char_9
  1657. 654aa:Char_colon
  1658. 654b1:Char_semicolon
  1659. 654b8:Char_leftAngle
  1660. 654bf:Char_equal
  1661. 654c6:Char_rightAngle
  1662. 654cd:Char_A
  1663. 654d4:Char_B
  1664. 654db:Char_C
  1665. 654e2:Char_D
  1666. 654e9:Char_E
  1667. 654f0:Char_F
  1668. 654f7:Char_G
  1669. 654fe:Char_H
  1670. 65505:Char_I
  1671. 6550c:Char_J
  1672. 65513:Char_K
  1673. 6551a:Char_L
  1674. 65521:Char_M
  1675. 65528:Char_N
  1676. 6552f:Char_O
  1677. 65536:Char_P
  1678. 6553d:Char_Q
  1679. 65544:Char_R
  1680. 6554b:Char_S
  1681. 65552:Char_T
  1682. 65559:Char_U
  1683. 65560:Char_V
  1684. 65567:Char_W
  1685. 6556e:Char_X
  1686. 65575:Char_Y
  1687. 6557c:Char_Z
  1688. 65583:Char_a
  1689. 6558a:Char_b
  1690. 65591:Char_c
  1691. 65598:Char_d
  1692. 6559f:Char_e
  1693. 655a6:Char_f
  1694. 655ad:Char_g
  1695. 655b4:Char_h
  1696. 655bb:Char_i
  1697. 655c2:Char_j
  1698. 655c9:Char_k
  1699. 655d0:Char_l
  1700. 655d7:Char_m
  1701. 655de:Char_n
  1702. 655e5:Char_o
  1703. 655ec:Char_p
  1704. 655f3:Char_q
  1705. 655fa:Char_r
  1706. 65601:Char_s
  1707. 65608:Char_t
  1708. 6560f:Char_u
  1709. 65616:Char_v
  1710. 6561d:Char_w
  1711. 65624:Char_x
  1712. 6562b:Char_y
  1713. 65632:Char_z
  1714. 65639:Char_215
  1715. 65640:Char_253
  1716. 65647:Char_273
  1717. 6564e:Char_200
  1718. 65655:Char_210
  1719. 6565c:Char_204
  1720. 65663:"Char_LParen
  1721. 6566a:Char_012
  1722. 65671:Char_207
  1723. 65678:"Char_RParen
  1724. 6567f:Char_205
  1725. 65686:Char_space
  1726. 6568d:Char__
  1727. 65694:Char_LBracket
  1728. 6569b:Char_RBracket
  1729. 656a2:Char_LAngBracket
  1730. 656a9:Char_RAngBracket
  1731. 656b0:Char_211
  1732. 656b7:Char_212
  1733. 656be:Char_213
  1734. 2a2b4:Real_0
  1735. 2a2c9:Real_1
  1736. 2a2de:Real_2
  1737. 2a2f3:Real_3
  1738. 2a308:Real_4
  1739. 2a31d:Real_5
  1740. 2a332:Real_6
  1741. 2a347:Real_7
  1742. 2a35c:Real_8
  1743. 2a371:Real_9
  1744. 2a386:"Real_-1"
  1745. 2a39b:"Real_-2"
  1746. 2a3b0:"Real_-3"
  1747. 2a3c5:"Real_-4"
  1748. 2a3da:"Real_-5"
  1749. 2a3ef:"Real_-6"
  1750. 2a404:"Real_-7"
  1751. 2a419:"Real_-8"
  1752. 2a42e:"Real_-9"
  1753. 2a443:Real_3.14159265359
  1754. 18ab2:Need_1_arg
  1755. 19c34:Need_n_args
  1756. 18fb2:Check_1_argtype
  1757. 5445:ToPrg
  1758. 18ece:Switch_on_argtype
  1759. 54af:ListAlgPrgTo
  1760. 5459:ToList
  1761. 546d:ToAlg
  1762. 238a4=StrTo
  1763. 1410f:Num
  1764. 140f1:Chr
  1765. 31d9:Dupn
  1766. 32e2:Pick
  1767. 3325:Roll
  1768. 339e:Rolld
  1769. 31ac:Dup2
  1770. 3223=Swap
  1771. 3258:Drop2
  1772. 3295=Rot
  1773. 314c:Depth
  1774. 326e=Dropn
  1775. 656c5:"String_'R\200\200'"
  1776. 656d5:"String_'R\200Z'"
  1777. 656e5:String_XYZ
  1778. 656f5:"String_'\253\273'"
  1779. 65703:"String_'{}'"
  1780. 65711:"String_'[]'"
  1781. 6571f:"String_''''"
  1782. 6572d:"String_'::'"
  1783. 6573b:"String_'()'"
  1784. 65749:"String_'""'"
  1785. 65757:String_ECHO
  1786. 65769:String_EXIT
  1787. 6577b:String_Undefined
  1788. 65797:String_RAD
  1789. 657a7:String_GRAD
  1790. 65150:"String_']'"
  1791. 6515c:"String_'[ '"
  1792. 6516a:"String_'['"
  1793. 65176:"String_'{'"
  1794. 65182:"String_'}'"
  1795. 6518e:"String_'#'"
  1796. 6519a:"String_'_'"
  1797. 651a6:"String_'$'"
  1798. 651b2:"String_'&'"
  1799. 651be:"String_'\033'"
  1800. 651ca:"String_'\273'"
  1801. 651d6:"String_'\253'"
  1802. 651e2:"String_E"
  1803. 651ee:"String_'\200'"
  1804. 651fa:"String_'\205'"
  1805. 65206:"String_'|'"
  1806. 65212:String_14_blanks
  1807. 65238:"String_'\012'"
  1808. 65244:String_der
  1809. 65254:String_1_blank
  1810. 65260:String_UNKNOWN
  1811. 65278:"String_'"'"
  1812. 65284:"String_'''"
  1813. 65290:"String_','"
  1814. 6529c:"String_'.'"
  1815. 652a8:"String_';'"
  1816. 652b4:"String_'('"
  1817. 652c0:"String_')'"
  1818. 652cc:"String_'^'"
  1819. 652d8:"String_'*'"
  1820. 652e4:"String_'/'"
  1821. 652f0:"String_'+'"
  1822. 652fc:"String_'-'"
  1823. 65308:"String_'='"
  1824. 65314:"String_'\203'"
  1825. 65320:"String_'\210'"
  1826. 6532c:String_GROB
  1827. 6533e:"String_C$"
  1828. 6534c:String_0
  1829. 65358:String_1
  1830. 65364:String_2
  1831. 65370:String_3
  1832. 6537c:String_4
  1833. 65388:String_5
  1834. 65394:String_6
  1835. 653a0:String_7
  1836. 653ac:String_8
  1837. 653b8:String_9
  1838. 18edf=Switch_on_2_argtypes
  1839. 2a974:Add_real_real
  1840. 23768=If
  1841. 22f22:Then_real
  1842. 2a458:Long_3.14159265358979
  1843. 2a472:Real_9.99999999999E499
  1844. 2a487:"Real_-9.99999999999E499"
  1845. 2a49c:"Real_1E-499"
  1846. 2a4b1:"Real_-1E-499"
  1847. 2a4c6:Long_0
  1848. 2a4e0:Long_1
  1849. 2a4fa:Long_2
  1850. 2a514:Long_3
  1851. 2a52e:Long_4
  1852. 2a548:Long_5
  1853. 2a562:Long_0.1
  1854. 2a57c:Long_0.5
  1855. 2a596:Long_10
  1856. 5267f:"Complex_0,1"
  1857. 526ae:"Complex_0,-1"
  1858. 5460e:"Local_'tcls'"
  1859. 54624:"Local_'fcls'"
  1860. 5198f=IM_Real
  1861. 519b7=IM_Complex
  1862. 1c8bb:Sub_Str_Real_Real
  1863. 1c8cf:Sub_CArr_Real_Real
  1864. 4fb74=Sub_Grob_List_List
  1865. 4fbc4=Sub_Grob_Cmpx_Cmpx
  1866. 194f7=TwoReal_to_Shorts
  1867. 6641:getshort
  1868. 543f9=Real_to_binary
  1869. 5435d=Binary_to_real
  1870. 54422:Real_to_Binary_positive"
  1871. 1a7ce:Real_8192
  1872. 141de:jump_save_regs
  1873. 5636:Strlen
  1874. 636dc:Over_Greaterp
  1875. 3dbc:Add_short
  1876. 63718:Rot_add
  1877. 63768:Rot_sub
  1878. 6377c:Over_sub
  1879. 63790:Sub_loop_count
  1880. 3e2d:Inc2_short
  1881. 3e6f:Mul2_short
  1882. 3eb1:And_short_short
  1883. 3b06:False_rplret
  1884. 3d19:Equal_short_short
  1885. 3d83:GreaterThan_short_short
  1886. 637b8:Rot_inc_short
  1887. 637cc:Sub_inc_short
  1888. 637e0:Swap_dec_short
  1889. 63a88:Dup_short_0
  1890. 63a9c:Dup_short_1
  1891. 63ab0:Swap_short_1
  1892. 63ac4:Twice_short_1
  1893. 63ad8:Dup_short_2
  1894. 6112a:Drop_2_3
  1895. 1ca62:Size_GROB
  1896. 1caf0:Pos_list_any
  1897. 644a3:Listpos
  1898. 18cc2:Error_Too_few_args
  1899. 18ca2:Error_Bad_arg_value
  1900. 18ca7:error_bad_arg_value
  1901. 18c92:Error_Undef_name
  1902. 18c97:error_undef_name
  1903. 62076:ret_set_FalseTrue
  1904. 6207d:ret_set_FalseTrue_2
  1905. 62080:ret_set_True
  1906. 62096:ret_set_TrueFalse
  1907. 6209d:ret_set_TrueFalse_2
  1908. 620a0:ret_set_False
  1909. 6203a:Gnamep
  1910. 6204f:Unitp
  1911. 62544:rplret_2
  1912. 6264e:Mul10_short
  1913. 6256a:Add3_short
  1914. 6257a:Add4_short
  1915. 6258a:Add5_short
  1916. 6259a:Add6_short
  1917. 625aa:Add7_short
  1918. 625ba:Add8_short
  1919. 625ca:Add9_short
  1920. 625da:Add10_short
  1921. 625ea:Add12_short
  1922. 625fa:Sub3_short
  1923. 6260a:Sub4_short
  1924. 6261a:Sub5_short
  1925. 6262a:Sub6_short
  1926. 6266b:pushShort_cAddA
  1927. 28fc:Type
  1928. 62966:rpl_return_ref
  1929. 71be:rplret_5
  1930. 714d:Skip
  1931. 715c:Skip_Two
  1932. 7170:set_return
  1933. 61a02:test_True
  1934. 626c1:skip_3_exec
  1935. 626c8:skip_2_exec
  1936. 626cf:skip_1_exec
  1937. 626dc:Skip_3_exec
  1938. 626ee:Skip_1_exec
  1939. 62001:Swap_short
  1940. 61a2c:Return_if_False
  1941. 61a3b:Return_if_True
  1942. 6216e:Realp
  1943. 621ad:Functionp
  1944. 621c2:Directoryp
  1945. 621d7:Algebraicp
  1946. 621ec:Programp
  1947. 62201:Graphicp
  1948. 62216:Listp
  1949. 6222b:Tagp
  1950. 6223b:Level2_Realp
  1951. 62256:Level2_Complexp
  1952. 62266:Zero_shortpq
  1953. 63b2d:Assert_Real
  1954. 63b46:Assert_False
  1955. 63d12:Return_if_LessThan_short_short
  1956. 63d3a:Return_if_NotEqual_short_short
  1957. 63d4e:Return_if_notGreaterThan_Short_2
  1958. 63d67:Return_if_notGreaterThan_short_short
  1959. 63da3:Return_if_notArray
  1960. 63ddf:Return_if_notFalse
  1961. 62830:Overwrite_lev2_with_lev1
  1962. 62864:Drop_lev4
  1963. 62880:Drop_lev5
  1964. 6250b:get_shorts_div2
  1965. 62535:Set_short_0
  1966. 610ed:pushc_rplret
  1967. 70583=local_vars
  1968. 8d92:Home
  1969. 8d9e:setHome_c
  1970. 8dc4:SetTmpdir_Home
  1971. 705a1=tmpdir
  1972. 3012:getinstr_2
  1973. 50262:Add_real_1
  1974. 33a9:rolld_a_levels
  1975. 612ec:roll_a_lev_ref
  1976. 615bc:store_local_c
  1977. 615e0:Store_local_fh
  1978. 615f0:Store_local_19h
  1979. 61600:Store_local_23h
  1980. 61610:Store_local_2dh
  1981. 61615:Store_Local_2dh
  1982. 6145c:Get_local1
  1983. 6146c:Get_local2
  1984. 6147c:Get_local3
  1985. 6148c:Get_local4
  1986. 6149c:Get_local5
  1987. 614ac:Get_local6
  1988. 614bc:Get_local7
  1989. 614cc:Get_local8
  1990. 614dc:Get_local9
  1991. 614ec:Get_local10
  1992. 614fc:Get_local11
  1993. 6150c:Get_local12
  1994. 6151c:Get_local13
  1995. 6152c:Get_local14
  1996. 6153c:Get_local15
  1997. 6154c:Get_local16
  1998. 6155c:Get_local17
  1999. 6156c:Get_local18
  2000. 617d8:Get_local_data
  2001. 61907:drop_ret
  2002. 618f7:Skip_if_not_true_else_drop_ret
  2003. 61933:Skip_if_not_equal_else_ret
  2004. 505b2:GROB_null
  2005. 57a0c=Expan
  2006. 572a2=Isol
  2007. 20b00=Show_list
  2008. 70f5:pop_rplret
  2009. 61ad8:If_then_else
  2010. 61b02:if_then_else
  2011. 6f8e:Eval
  2012. 6196c:rplret_6_ref
  2013. 61960:If_notTrueDropRet
  2014. 6194b:If_TrueDropRet
  2015. 217c7=Eval_Tag
  2016. 1a471:Binary_526260410
  2017. 1a48a:Short_7dac5h
  2018. 1a494:Short_7dddbh
  2019. 1a4f0:Ift_real_any
  2020. 1a513:Ift_alg_any
  2021. 62c7d:Rot_Dup2
  2022. 62ca5:Rot_Over
  2023. 62ccd:Over_Dup
  2024. 62ce1:R_to_S_Dup
  2025. 62edf:Over_Swap
  2026. 62d45:Roll_Swap
  2027. 62d6d:Substr_Swap
  2028. 501e:disp_error_c_p
  2029. 55df:String_null
  2030. 55e9:List_empty
  2031. 55f3:Alg_empty
  2032. 55d5:Binary_null
  2033. 312b:End
  2034. 3130:rpl_end
  2035. 5574:short_5_p
  2036. 4d3e:Set_string_null
  2037. 4d57:Drop_set_string_null
  2038. 4e07:Get_70600
  2039. 5f91:findobj
  2040. 62c91:If_lev3_not_false
  2041. 62dfe:AddShort_Swap
  2042. 62e12:SubShort_Swap
  2043. 3de0:Sub_short
  2044. 62e7b:RealToShort_Swap
  2045. 18cea:Real_to_Short
  2046. 62f07:Nlocals_Swap
  2047. 62f43:IfTrue_DropLev1_elseDropLev2
  2048. 62f5c:IfFalse_DropLev1_elseDropLev2
  2049. 62f75:DropNplus1
  2050. 62f89:DropNth
  2051. 357a8:Stat_Dir
  2052. 35b3d:popd1_eval_ret
  2053. 35af6:Assert_2RArr_elseq
  2054. cb0f:ret_FalseTrue_2_ref
  2055. cbe3:disp_error_cx
  2056. cbae:Error_Nonexist_Alrm
  2057. e91b:testtype
  2058. 62f9d:Stat_Dir_Drop
  2059. 630f1:Dup_Roll
  2060. 63105:Over_RolldShortPlus2
  2061. 63119:Rolld8
  2062. 6312d:Rolld10
  2063. 631e1:Dup_ListAlgPrgTo
  2064. 63259:LeftStr_Less1
  2065. 6326d:RightStr
  2066. 632d1:ToPrg_Eval
  2067. 63295:Dup_StrToGlobal
  2068. 5c8a:Two_lreals_to_lcomplex
  2069. 5dbc:Lcomplex_to_lreals
  2070. 5eea:Zap_Gname
  2071. 5b79:stralloc
  2072. 670c:blkcopy
  2073. 5f61:Free_mem
  2074. 6333a:Skip_if_NonzeroShort
  2075. 6296d:Return_alt
  2076. 63312:Swap_Retq
  2077. 63326:DropLev2And3_Retq
  2078. 6336c:Skip_if_EqualShort
  2079. 63411:Dup_CurLoopInc
  2080. 63425:Swap_CurLoopInc
  2081. 6347f:Dup_Start0or1toLess1
  2082. 634f7:True_False
  2083. 6350b:False_True
  2084. 6351f:Short0_False
  2085. 63533:Short1_False
  2086. 641c7:In_current_context
  2087. 63687:Dup_LessShort7p
  2088. 6384e:setd0tos
  2089. 6385d:setd1tos
  2090. 63b05:Error_ifNotTrue_BadArgVal
  2091. 63f6a:AddStrings_Swap
  2092. 63fa6:Drop_Dropn
  2093. 63fce:IfPrg_thenToPrg1
  2094. 642e3:Short_5_4
  2095. 64214:pushsmallshort_a_c
  2096. 6427a:Short_0_7
  2097. 6428a:Short_1_1b
  2098. 642d1:Short_3_4
  2099. 644bc:Swap_Listpos
  2100. 5ec7=SplitTag
  2101. 647a2:Swap_UnTag_Swap
  2102. 65ccc:List_empty_alt
  2103. 2e7ef=Kget_name
  2104. 2d816=Recn_name
  2105. 2d816=Recn_string
  2106. 1613f:String_null_Copy
  2107. 7069f=Stacksize
  2108. 18abf:assert_1_arg
  2109. 706fd=N_args_nib
  2110. 705bf=Arg2
  2111. 705c4=Arg3
  2112. 18a9a:assert_2_args
  2113. 18b92:Need_4_args_retq
  2114. 18b9f:Need_4_args
  2115. 18b6d:Need_5_args_retq
  2116. 18b7a:Need_5_args
  2117. 18cd7:AbsReal_to_Short
  2118. 2ed4c:Cksm_real
  2119. 2ec84:Baud_real
  2120. 2ecca:Parity_real
  2121. 2edf5=Stime_real
  2122. 2ee18:Sbrk_real
  2123. 2e8d1=Pkt_strings
  2124. 2ea4f:Get_IOPar
  2125. 6ec9:pushobj_a_rplret
  2126. 120cc:strlen_a
  2127. 62c69:Copy_Swap
  2128. 62c2d:IfEqual_then_else
  2129. 62c41:ListAlgPrgTo_Dup
  2130. 6254e:Set_twoShort0
  2131. 627e2:push_a_twice
  2132. 627d5:AddShort_Dup
  2133. 62946:Short1_End
  2134. 6266d:pushShortA_alt_ref_3
  2135. 62b88:ListAlgPrgTo_Drop
  2136. 60f4b:Drop3
  2137. 60f66:Drop6
  2138. 60f72:Drop5
  2139. 6103c:Roll8
  2140. 60f9b:Drop_lev2
  2141. 6109e:Rolld4
  2142. 610c4:Rolld5
  2143. 610fa:Rolld6
  2144. 611be:Add2_Pick
  2145. 611e1:Add4_Pick
  2146. 6121c:Pick4
  2147. 6123a:Pick5
  2148. 6125e:Pick6
  2149. 61282:Pick7
  2150. 612a9:Pick8
  2151. 7221:Loop_increment
  2152. 71b0:exit_loop
  2153. 71c8:Until_False
  2154. 71ee:IfFalse_thenSkip2Iterate
  2155. 7249:Loop_counter
  2156. 7295:Set_loop_counter
  2157. 70588=loop_context
  2158. 7258:Loop_v1q
  2159. 7264:Loop_v2q
  2160. 72ad:Set_loop_v1q
  2161. 72c2:Set_loop_v2q
  2162. 7012:DupNextPrg
  2163. 716b:Set_return_self
  2164. 717b:set_return_a
  2165. 70574=FramePtr
  2166. 6a8e:div5_c
  2167. 7056a=DynamicStart
  2168. 40ee7:Delay_55e
  2169. 40f12:Delay_43206h
  2170. 63b19:Error_ifFalse_BadArgval
  2171. 31085:test_bit3_of_402
  2172. 549cc:List_LocalDvar
  2173. 5de55:False_Iterate
  2174. 5fb49:IfTrue_False_Iterate
  2175. 18fa9:Check_1_argtype_alt
  2176. 18f83:error_bad_arg_type_ref_2
  2177. 1911e=type_table_1
  2178. 1916e:type_table_2
  2179. 797b:Find_name
  2180. 7ec4:rr_setFalse_rplret
  2181. 7c2f:jumpTrue
  2182. 79d3:rr_setFalse_rplret_ref
  2183. 7901=Up_dir
  2184. 79cc:try_prev_dir
  2185. 3af2:Not
  2186. 62c55:If_false
  2187. 62de5:Pick4_Add_Swap
  2188. 62ecb:Roll4_Swap
  2189. 62ef3:Pick4_Swap
  2190. 4245c:While_loc70679nonzero
  2191. 2fef:GetXlib_or_ErrUndef
  2192. 2c28:span10nib
  2193. 2c49:span21nib
  2194. 2c6d:span26nib
  2195. 2c95:span32nib
  2196. 2cbc:span47nib
  2197. 2f28:spanxlib
  2198. 524af:Complex_0_0i
  2199. 524f7:Complex_1_0i
  2200. 5251c:Real_MAXR
  2201. 40a6f:Store_7065f
  2202. 8d66:pushindc_rplret
  2203. 40a82:Get_7065f
  2204. 8d35:zeropindc
  2205. 8d4a:Store_tmpdir
  2206. 8d5a:Get_curdir
  2207. 34d30:Local_null
  2208. 63b5a:Getval_Mul
  2209. 63cea:IfTrue_Return_if_notTrue
  2210. 63fba:Pick4_Pick4
  2211. 6419a:List_13eh_123h_dffh
  2212. 613b6:Get_lastLocal
  2213. 613e7:Get_secondLastLocal
  2214. 6140e:Get_thirdLastLocal
  2215. 61438:Get_fourthLastLocal
  2216. 53e65:Asr_bin
  2217. 53e0c:Rl_bin
  2218. 53e3b:Rlb_bin
  2219. 53da4:Rr_bin
  2220. 53de1:Rrb_bin
  2221. f371=Convert
  2222. f33a=ToUnit_real_unit
  2223. 197c8:Ufact_unit_unit
  2224. cc0e=Cmd_Date
  2225. eb81=Ticks
  2226. d2a3:Wslog
  2227. dda8:Ackall
  2228. ddc1:Ack
  2229. e3df:Rclalrm
  2230. ead7=Fndalrm_real
  2231. eb31=Fndalrm_list
  2232. 19a72:Global_Alrmdat
  2233. 19a91:List_Real0_StringNull_Real0
  2234. 52c6=ToList1_Swap_AddList
  2235. 19de2:Disp_next_alrm
  2236. 11ccc:do_retsetxm
  2237. 53f70:restore_regs_ref_5
  2238. 120ee:pushShortA_rplret_alt_ref
  2239. 12429:Disp_pitch8Str
  2240. 1245b:Disp_pitch8Str_line0
  2241. 1246b:Disp_pitch8Str_line1
  2242. 1247b:Disp_pitch8Str_line2
  2243. 1248b:Disp_pitch8Str_line3
  2244. 1249b:Disp_pitch8Str_line4
  2245. 124ab:Disp_pitch8Str_line5
  2246. 124bb:Disp_pitch8Str_line6
  2247. 124cb:Disp_pitch8Str_line7
  2248. 1165a=compute_grob_nibble
  2249. 11eef:do_retsetc
  2250. 11f1d:set_c_nib7_0fh
  2251. 1200c:String_to_grob_pitch6
  2252. 357c:pusha_rplret_alt
  2253. 357f:pusrr0_rplret_alt
  2254. 63754:Pick4_Add
  2255. 63740:Pick3_Add
  2256. 63583:IterateDrop2False_if_notFalse
  2257. 3b75:DropLev2_ifTrue
  2258. 638e4:DropIfTrue_Iterate
  2259. 619ad:If_then
  2260. 1f00e:Binary_1234250h
  2261. 1f024:Short_7d9dfh
  2262. 1f02e:Short_7d8eah
  2263. 1f038:Short_7dda4h
  2264. 52ee=Add_char_to_string
  2265. 619bc:IfTrue_then
  2266. 127a7:Split_string_at_LF
  2267. 70551=Menu_GROB_ptr
  2268. 7055b=Stk_56line_GROB_ptr
  2269. 1270c:Disp_at_lines_0_1
  2270. 12725:Disp_line_0
  2271. 12748:Disp_line_1
  2272. 11cf3:String_pitch10_toGrob
  2273. e128:Get_fullStkGrob_curColRow
  2274. e0d3:Get_fullStkGrob_curPos_eolPos
  2275. e0fb:Get_fullStkGrob_nextLine
  2276. e083:Erase_curStkLine
  2277. e097:Erase_nextStkLine
  2278. e029:Disp_string_at_curPos
  2279. e05b:Disp_grob_at_curPos
  2280. e06f:Erase_two_stkLines
  2281. 627a7:Drop_Drup
  2282. 626f7:Dup_Add2
  2283. 12815:DispStringPitch6_inFullStkCurPos_FullStk
  2284. 11f80=String_pitch6_toGrob
  2285. 12829:Disp_inFullStkCurPos_FullStk
  2286. 60ee7:Swap_lev2_lev3
  2287. 60f21:Remove_lev3
  2288. 60f33:Rev3
  2289. 4e5e:Inc_local_and_loop_ctrs
  2290. 8326:Get_first_dirEntry
  2291. 10f54:Error_Cant_edit_null_char
  2292. 10f64:Error_Inv_user_func
  2293. 10f74:Error_No_Cur_eq
  2294. 10f86:Error_Inv_syntax
  2295. 10f96:Error_Invalid_PPAR
  2296. 10fa6:Error_Nonreal_result
  2297. 10fb6:Error_Unable_to_Isol
  2298. 10fc6:Error_Halt_not_allowed
  2299. 10fd6:Error_123
  2300. 10fe6:Error_Last_stack_disabl
  2301. 10ff6:Error_Last_cmd_disabl
  2302. 11006:Error_Wrong_arg_count
  2303. 11016:Error_Circ_ref
  2304. 11026:Error_Dir_not_allowed
  2305. 11036:Error_Nonempty_dir
  2306. 11046:Error_Inv_def
  2307. 11056:Error_Missing_library
  2308. 11066:Error_Name_conflict
  2309. 11076:Error_13e
  2310. 18a1e=No_arguments
  2311. 1a16f:Up
  2312. 5944=Crc_Nibbles
  2313. 2a9fe:Div_real
  2314. 41a7=Off
  2315. 15007=Doerr_real
  2316. 15048=Doerr_string
  2317. 1501b=Doerr_bin
  2318. 20ff2=Order
  2319. 2a76b:Zerop_real
  2320. 2a788:Gt1Lev2p_real
  2321. 2a799:Gt1p_real
  2322. 2a837:rr_pushFalse_alt3
  2323. 2a83e:pushFalse_alt3
  2324. 2a843:setFalse_alt3
  2325. 2a851:rr_pushTrue_alt3
  2326. 2a858:pushTrue_alt3
  2327. 2a85d:setTrue_alt3
  2328. 2a867:rplret_9
  2329. 2bc4a:normalize_a
  2330. 29fd0=getreal_normalize
  2331. 2a0b1:get2arrays_real
  2332. 2bca0:normalize_a_d
  2333. 2aea2:getreal_norm_ref
  2334. 2aea9:get2reals_norm_ref
  2335. 2aeb0:getarray_real_ref
  2336. 2aeb7:get2arrays_real_ref
  2337. 18f6a=EndAndEvalq
  2338. 6204a:Dup_Unitp
  2339. 22f68:Eval_globAlg
  2340. 22f86:Eval_lev2GlobAlg
  2341. 633c6:Until
  2342. 633df:If_thenSkip2Iterate
  2343. 5a03=Bin_to_short
  2344. 140ab:Disp
  2345. 142fb=Freeze
  2346. 637a4:Dup_Rot_Swap_Sub
  2347. 62904:Swap_Inc
  2348. 6292f:Dec
  2349. 42c74:Dup2_LFpos
  2350. 628eb:Dup_Inc
  2351. 5733=Substr_short_short
  2352. 6199c:skip_if_cc
  2353. 5a51:Char_to_short
  2354. 5a75:Short_to_char
  2355. 14137:StrTo_Eval
  2356. 1415a:Beep_real
  2357. 4d0e:Set_70673
  2358. 4d33:Clear_70673
  2359. 1a738:Wait_real
  2360. 4b15:getmenu
  2361. 4b76:getmenuent
  2362. 8d75:rpljump_indc
  2363. 41904:Eval_70632
  2364. 41914:Store_70637
  2365. 41924:Get_70637
  2366. 41934:Eval_70637
  2367. 41944:Store_7063c
  2368. 41954:Eval_7063c
  2369. 41964:Store_70641
  2370. 41974:Eval_70641
  2371. 41984:Store_70646
  2372. 41994:Eval_70646
  2373. 419a4:Store_70560
  2374. 419b4:Eval_70650
  2375. 419c4:Store_70655
  2376. 419d4:Eval_70655
  2377. 419e4:Store_70623
  2378. 419f4:Get_70623
  2379. 41a04:Store_7064b
  2380. 41a14:Get_7064b
  2381. 3a297:Disp_in_menuGrob
  2382. 114b3:pushindc_short
  2383. 114c9:popshort_store_indc
  2384. 3a2c9:Eval_Eval_70632
  2385. 3a3fb:Grob_dot_space_lineseg
  2386. 5046a:Cllcd
  2387. 517b2:Pick3_Grobsize
  2388. 11d00:String_pitch8_toGrob
  2389. 5048d:ToGrob
  2390. 62169:Dup_Realp
  2391. 6217e:Dup_Complexp
  2392. 62193:Dup_Arrayp
  2393. 621a8:Dup_Functionp
  2394. 621bd:Dup_Directoryp
  2395. 621d2:Dup_Algebraicp
  2396. 621e7:Dup_Programp
  2397. 621fc:Dup_Graphicp
  2398. 62211:Dup_Listp
  2399. 62226:Dup_Tagp
  2400. 6210c:Set_false
  2401. 1795a:StoreShort_70770
  2402. 704ea=Keybuf
  2403. 4693:save_regs_ref_4
  2404. 55927=Equal
  2405. 1a9f9:Binary_0108
  2406. 51bb2:Conj_complex
  2407. 35f30=Conj_array
  2408. 54f1d=Conj_algGlob
  2409. 53bb0:Symbolic_mode_p
  2410. 53bc9:OctDecp
  2411. 53c0a:Sym_const_flag_p
  2412. 53c23:Principal_flag_p
  2413. 5ea72:IfSymConst_then_else
  2414. 622ef:Swap_AddStrings
  2415. 1acdd:Cmd_unary_plus
  2416. 2a9bc=Mul_real
  2417. 51d60=Mul_real_complex
  2418. 51d4c=Mul_complex_real
  2419. 51d88=Mul_complex
  2420. 542d1=Mul_real_bin
  2421. 542ea=Mul_bin_real
  2422. 53ed3=Mul_bin
  2423. 362dc=Mul_real_array
  2424. 362dc=Mul_complex_array
  2425. 362dc=Mul_array_real
  2426. 362dc=Mul_array_complex
  2427. 3643f=Mul_array
  2428. 55fda=Mul_realUnit_algGlob
  2429. 55fc1=Mul_algGlob_realComplexUnit
  2430. 55ff3=Mul_algGlob
  2431. f792=Mul_unit
  2432. 1b124:Pwr_real
  2433. 52342=Pwr_real_complex
  2434. 52360=Pwr_complex_real
  2435. 52374=Pwr_complex
  2436. 55ef9=Pwr_realComplex_algGlob
  2437. 55ee0=Pwr_algGlob_realComplex
  2438. 55f12=Pwr_algGlob
  2439. f878=Pwr_unit
  2440. 4ce6:Get_70673
  2441. 2aa81=Xroot_real
  2442. f8fa=Xroot_real_unit
  2443. 560bb=Xroot_real_algGlob
  2444. 560a2=Xroot_algGlob_real
  2445. 560d4=Xroot_algGlob
  2446. 1b30d:Arg_real
  2447. 52099=Arg_complex
  2448. 54f4f=Arg_algGlob
  2449. 1b3f5:Sqrt_real
  2450. 52107=Sqrt_complex
  2451. 54f81=Sqrt_algGlob
  2452. f92c=Sqrt_unit
  2453. 2abef=Sin_real
  2454. 52530=Sin_complex
  2455. 54fb3=Sin_algGlob
  2456. f62e=Sin_unit
  2457. 2adae=Sinh_real
  2458. 5262f=Sinh_complex
  2459. 54ffe=Sinh_algGlob
  2460. 2adda=Cosh_real
  2461. 52648=Cosh_complex
  2462. 55017=Cosh_algGlob
  2463. 2aded=Tanh_real
  2464. 5265c=Tanh_complex
  2465. 55030=Tanh_algGlob
  2466. 1b775:Acos_real
  2467. 52863=Acos_complex
  2468. 55062=Acos_algGlob
  2469. 1b8de:Atanh_real
  2470. 527eb=Atanh_complex
  2471. 550c6=Atanh_algGlob
  2472. 2ab2f=Exp_real
  2473. 52193=Exp_complex
  2474. 550df=Exp_algGlob
  2475. 1b995:Ln_real
  2476. 521e3=Ln_complex
  2477. 550f8=Ln_algGlob
  2478. 2ab42=Expm
  2479. 5515c=Expm_algGlob
  2480. 2b0c4=Factorial
  2481. 55175=Factorial_algGlob
  2482. 2b0c4=Factor
  2483. 55175=Factor_algGlob
  2484. 2af73=Ceil
  2485. 551d9=Ceil_algGlob
  2486. fd36=Ceil_unit
  2487. 2ae39=Xpon
  2488. 551f2=Xpon_algGlob
  2489. 2a6f5=Max_real
  2490. 55e63=Max_real_algGlob
  2491. 55e4a=Max_algGlob_real
  2492. 55e7c=Max_algGlob
  2493. fb6f=Max_unit
  2494. 2a70e=Min_real
  2495. 55eae=Min_real_algGlob
  2496. 55e95=Min_algGlob_real
  2497. 55ec7=Min_algGlob
  2498. fb8d=Min_unit
  2499. 2b53d=Trnc_real
  2500. 55e18=Trnc_real_algGlob
  2501. 35f17=Trunc_complex_real
  2502. 35ea9=Trunc_array_real
  2503. 55dff=Trunc_algGlob_real
  2504. 55e31=Trunc_algGlob
  2505. fd8b=Trunc_unit_real
  2506. 2a673=toHMS_real
  2507. 366f6=Dot_array
  2508. 2aa30=PercentCH_real
  2509. 55ca1=PercentCH_real_algGlob
  2510. 55c88=PercentCH_algGlob_real
  2511. 55cba=PercentCH_algGlob
  2512. fc3c=PercentCH_unit
  2513. 2afc2=Rand
  2514. 2b044=Rdz_real
  2515. 2ae62=Comb_real
  2516. 55d37=Comb_real_algGlob
  2517. 55d1e=Comb_algGlob_real
  2518. 55d50=Comb_algGlob
  2519. 1c331:TestFlag_real
  2520. 5380e:TrueOrFalse_to_real
  2521. 1c379:Fcp_real
  2522. 61993=EndEval_if_true
  2523. 1c46b:Eng
  2524. 166fb=SetEng
  2525. 1c4ba:Fscp_real
  2526. 2a799=Ge1p_real
  2527. 706d5=User_flags
  2528. 706c5=System_flags
  2529. 53725:Setflag_q
  2530. 53731:Setflag
  2531. 53761:Clear_system_flag
  2532. 53778:Test_user_flag
  2533. 53784:Test_system_flag
  2534. 16707=Std
  2535. 1c4bf=Fccp
  2536. 53c43=Bin
  2537. 53c37=Hex
  2538. 53c4f:Oct
  2539. 53c96:Stws_real
  2540. 54039:Get_WS
  2541. 1c6a2:StoF_list
  2542. 5422c:pushbin_r0_rplret
  2543. 1c6f7:Set_user_flags
  2544. 1c731:Set_system_flags
  2545. 636c8:NotEqual2p
  2546. 705ba=last_args
  2547. 53842:Reset_lastargs
  2548. 18c4a:ToShort_Need_n_args
  2549. 18c34:ToShort_Need_n_args_alt
  2550. 35fee=IM_array
  2551. 54eb9=IM_algGlob
  2552. 1c8f4:Short_c5ch
  2553. 4f999=Repl_grob_list_grob
  2554. 1c903:Short_c2ch
  2555. 4f9f3=Repl_grob_cmplx_grob
  2556. 1c912:Short_85ch
  2557. 4fa2f=Repl_prg_list_grob
  2558. 1c921:Short_82ch
  2559. 4fa2f=Repl_prg_cmplx_grob
  2560. 1c930:Short_313h
  2561. 4faf7=Repl_string_real_string
  2562. 1c93f:Short_515h
  2563. 4fa7a=Repl_list_string_list
  2564. 1c973:ListAlgPrgTo_ToReal
  2565. 1ca4e:Size_array
  2566. 59f91=Size_algGlob
  2567. 1ca0d:Size_unknown
  2568. 1ca3a:Size_listUnit_toReal
  2569. 1cdf2:Real_18
  2570. 1ce07:Real_19
  2571. 3a1fc=Update_menu
  2572. 1d825:Get_global_real
  2573. 1d86b:Get_array_real
  2574. 1d898:Get_list_real
  2575. 61891=Dup_Skip_if_nonzerp
  2576. 52d26:List_of_4_locals
  2577. 1df30:Eval_lev3_alg
  2578.  
  2579.  
  2580.